X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fmain.cpp;h=c39eb883cb04bf8c282d1a38fa113c5a72633cf7;hb=f18185adbdce9891be0cbd2197838441aaa5ed3e;hp=d90258c15e5e86a256cbfd100f7eb348b4d37e8c;hpb=b4c8c8d02113d14c2a07751eb3b0c1bdeec7abb4;p=PrivacyBrowserPC.git diff --git a/src/main.cpp b/src/main.cpp index d90258c..c39eb88 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,6 +18,7 @@ */ // Application headers. +#include "databases/BookmarksDatabase.h" #include "databases/CookiesDatabase.h" #include "databases/DomainsDatabase.h" #include "windows/BrowserWindow.h" @@ -87,8 +88,9 @@ int main(int argc, char *argv[]) QDir().mkdir(QStandardPaths::standardLocations(QStandardPaths::AppDataLocation).first()); // Add the databases. - DomainsDatabase::addDatabase(); + BookmarksDatabase::addDatabase(); CookiesDatabase::addDatabase(); + DomainsDatabase::addDatabase(); // Create the main window. BrowserWindow *browserWindowPointer = new BrowserWindow();