2321 """ |
2321 """ |
2322 dlg = HelpClearPrivateDataDialog(self) |
2322 dlg = HelpClearPrivateDataDialog(self) |
2323 if dlg.exec_() == QDialog.Accepted: |
2323 if dlg.exec_() == QDialog.Accepted: |
2324 # browsing history, search history, favicons, disk cache, cookies, |
2324 # browsing history, search history, favicons, disk cache, cookies, |
2325 # passwords, web databases, downloads |
2325 # passwords, web databases, downloads |
2326 history, searches, favicons, cache, cookies, |
2326 (history, searches, favicons, cache, cookies, |
2327 passwords, databases, downloads = \ |
2327 passwords, databases, downloads) = \ |
2328 dlg.getData() |
2328 dlg.getData() |
2329 if history: |
2329 if history: |
2330 self.historyManager().clear() |
2330 self.historyManager().clear() |
2331 if searches: |
2331 if searches: |
2332 self.searchEdit.clear() |
2332 self.searchEdit.clear() |