]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/BrowserWindow.h
Reapply domain settings when the host changes.
[PrivacyBrowserPC.git] / src / BrowserWindow.h
index 7539099d11384e871d5a28b355c50bb88b4403da..a8679ad4eab8a9eb04c14e65f1573abd48832fb5 100644 (file)
@@ -39,15 +39,17 @@ public:
     BrowserWindow();
 
 private Q_SLOTS:
-    // Define the private slots.
+    // The private slots.
     void fileNew() const;
     void settingsConfigure();
+    void updateSearchEngineLabel(const QString &searchEngineString) const;
     void updateStatusBar(const QString &statusBarMessage) const;
     void updateUserAgentLabel(const QString &userAgentName) const;
 
 private:
-    // Define the private variables.
+    // The private variables.
     MainView *mainViewPointer;
+    QLabel *searchEngineLabelPointer;
     QLabel *userAgentLabelPointer;
 };
 #endif