]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/BrowserWindow.h
Prefer HTTPS for URLS without a protocol.
[PrivacyBrowserPC.git] / src / BrowserWindow.h
index 31ac5109a161a18275ab8628c4dfa8bbd98d1230..7539099d11384e871d5a28b355c50bb88b4403da 100644 (file)
@@ -22,7 +22,6 @@
 
 // Application headers.
 #include "MainView.h"
-#include "UserAgentHelper.h"
 
 // Qt framework headers.
 #include <QLabel>
@@ -41,15 +40,14 @@ public:
 
 private Q_SLOTS:
     // Define the private slots.
-    void fileNew();
+    void fileNew() const;
     void settingsConfigure();
-    void updateStatusBar(const QString &statusBarMessage);
-    void updateUserAgentLabel(const QString &userAgentName);
+    void updateStatusBar(const QString &statusBarMessage) const;
+    void updateUserAgentLabel(const QString &userAgentName) const;
 
 private:
     // Define the private variables.
     MainView *mainViewPointer;
     QLabel *userAgentLabelPointer;
-    UserAgentHelper *userAgentHelperPointer;
 };
 #endif