1474 Private slot called when the displayed text of the combobox is changed. |
1474 Private slot called when the displayed text of the combobox is changed. |
1475 |
1475 |
1476 @param url URL of the new site (QUrl) |
1476 @param url URL of the new site (QUrl) |
1477 """ |
1477 """ |
1478 selectedURL = url.toString() |
1478 selectedURL = url.toString() |
1479 if selectedURL and self.pathCombo: |
1479 if selectedURL != "" and self.pathCombo is not None: |
1480 i = self.pathCombo.findText(selectedURL) |
1480 i = self.pathCombo.findText(selectedURL) |
1481 if i == -1: |
1481 if i == -1: |
1482 if not QWebSettings.globalSettings()\ |
1482 if not QWebSettings.globalSettings()\ |
1483 .testAttribute(QWebSettings.PrivateBrowsingEnabled): |
1483 .testAttribute(QWebSettings.PrivateBrowsingEnabled): |
1484 self.pathCombo.insertItem(0, selectedURL) |
1484 self.pathCombo.insertItem(0, selectedURL) |