1505 Private slot called when the displayed text of the combobox is changed. |
1505 Private slot called when the displayed text of the combobox is changed. |
1506 |
1506 |
1507 @param url URL of the new site (QUrl) |
1507 @param url URL of the new site (QUrl) |
1508 """ |
1508 """ |
1509 selectedURL = url.toString() |
1509 selectedURL = url.toString() |
1510 if selectedURL and self.pathCombo: |
1510 if selectedURL != "" and self.pathCombo is not None: |
1511 i = self.pathCombo.findText(selectedURL) |
1511 i = self.pathCombo.findText(selectedURL) |
1512 if i == -1: |
1512 if i == -1: |
1513 if not QWebSettings.globalSettings()\ |
1513 if not QWebSettings.globalSettings()\ |
1514 .testAttribute(QWebSettings.PrivateBrowsingEnabled): |
1514 .testAttribute(QWebSettings.PrivateBrowsingEnabled): |
1515 self.pathCombo.insertItem(0, selectedURL) |
1515 self.pathCombo.insertItem(0, selectedURL) |