]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/main.cpp
Add user agent controls.
[PrivacyBrowserPC.git] / src / main.cpp
index 6bf5e74b642466face091a50d80a2acbc9969fe8..bf2e23f898fc17f0e744df8f797d626b91554692 100644 (file)
@@ -18,7 +18,7 @@
  */
 
 // Application headers.
-#include "mainwindow.h"
+#include "BrowserWindow.h"
 
 // KDE Frameworks headers.
 #include <KAboutData>
@@ -79,10 +79,10 @@ int main(int argc, char *argv[])
     KDBusService appDBusService(KDBusService::Multiple | KDBusService::NoExitOnFailure);
 
     // Create the main window.
-    MainWindow *mainWindowPointer = new MainWindow;
+    BrowserWindow *browserWindowPointer = new BrowserWindow;
 
     // Show the main window.
-    mainWindowPointer->show();
+    browserWindowPointer->show();
 
     // Return the application.
     return application.exec();