45 |
45 |
46 def save(self): |
46 def save(self): |
47 """ |
47 """ |
48 Public slot to save the Flash Cookies Manager configuration. |
48 Public slot to save the Flash Cookies Manager configuration. |
49 """ |
49 """ |
50 Preferences.setWebBrowser("FlashCookiesDataPath", |
50 Preferences.setWebBrowser( |
51 self.flashDataPathPicker.text()) |
51 "FlashCookiesDataPath", self.flashDataPathPicker.text()) |
52 Preferences.setWebBrowser("FlashCookieAutoRefresh", |
52 Preferences.setWebBrowser( |
53 self.autoModeGroup.isChecked()) |
53 "FlashCookieAutoRefresh", self.autoModeGroup.isChecked()) |
54 Preferences.setWebBrowser("FlashCookieNotify", |
54 Preferences.setWebBrowser( |
55 self.notificationGroup.isChecked()) |
55 "FlashCookieNotify", self.notificationGroup.isChecked()) |
56 Preferences.setWebBrowser("FlashCookiesDeleteOnStartExit", |
56 Preferences.setWebBrowser( |
57 self.deleteGroup.isChecked()) |
57 "FlashCookiesDeleteOnStartExit", self.deleteGroup.isChecked()) |
58 |
58 |
59 |
59 |
60 def create(dlg): |
60 def create(dlg): |
61 """ |
61 """ |
62 Module function to create the configuration page. |
62 Module function to create the configuration page. |