X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2FBrowserWindow.h;h=7539099d11384e871d5a28b355c50bb88b4403da;hp=31ac5109a161a18275ab8628c4dfa8bbd98d1230;hb=d37c965b5cc545db8845756ff2e059fd20a54869;hpb=11099c7bee4fc11fc1b59e67b322a502b616c2b4 diff --git a/src/BrowserWindow.h b/src/BrowserWindow.h index 31ac510..7539099 100644 --- a/src/BrowserWindow.h +++ b/src/BrowserWindow.h @@ -22,7 +22,6 @@ // Application headers. #include "MainView.h" -#include "UserAgentHelper.h" // Qt framework headers. #include @@ -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