X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Fmain.cpp;h=c39eb883cb04bf8c282d1a38fa113c5a72633cf7;hb=f18185adbdce9891be0cbd2197838441aaa5ed3e;hp=3dac5707d0887f84d32c18ee092c6e1efb67d094;hpb=2cdfb2ff48e9933d9d957fd706a449bf5a6f322f;p=PrivacyBrowserPC.git diff --git a/src/main.cpp b/src/main.cpp index 3dac570..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" @@ -45,7 +46,7 @@ int main(int argc, char *argv[]) KCrash::initialize(); // Instantiate about data, setting the component name, the display name, and the version. - KAboutData aboutData(QStringLiteral("privacybrowser"), i18nc("Program Name", "Privacy Browser"), QStringLiteral("0.2")); + KAboutData aboutData(QStringLiteral("privacybrowser"), i18nc("Program Name", "Privacy Browser"), QStringLiteral("0.4")); // Add the author name, job description, email address, and website. aboutData.addAuthor(i18nc("Developer Information", "Soren Stoutner"),i18nc("Developer Information", "Principal developer"), QStringLiteral("soren@stoutner.com"), @@ -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();