X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fmain.cpp;fp=src%2Fmain.cpp;h=9ff1e4d0534cda8c0c3e14a84f89366e4d17aac2;hb=a44e607fb5398c80c5de2629017865ae749e8fbf;hp=0c499f2750e19f01ea294c011c6e7701542f72b4;hpb=c5706a6ff3fbc42418e60b79fbe3f5c19396f7d2;p=PrivacyBrowserPC.git diff --git a/src/main.cpp b/src/main.cpp index 0c499f2..9ff1e4d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,7 @@ /* * Copyright 2022-2024 Soren Stoutner . * - * This file is part of Privacy Browser PC . + * This file is part of Privacy Browser PC . * * Privacy Browser PC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,9 +18,11 @@ */ // Application headers. +#include "GlobalVariables.h" #include "databases/BookmarksDatabase.h" #include "databases/CookiesDatabase.h" #include "databases/DomainsDatabase.h" +#include "helpers/FilterListHelper.h" #include "windows/BrowserWindow.h" // KDE Frameworks headers. @@ -34,6 +36,9 @@ #include #include +// Declare the global variables. +FilterListHelper *globalFilterListHelperPointer; + int main(int argc, char *argv[]) { // Create the application. @@ -92,6 +97,9 @@ int main(int argc, char *argv[]) CookiesDatabase::addDatabase(); DomainsDatabase::addDatabase(); + // Populate the filter lists. + globalFilterListHelperPointer = new FilterListHelper; + // Create the main window. BrowserWindow *browserWindowPointer = new BrowserWindow();