From a3f3e3933c4a2522e233917a6795c6e9d677e65c Mon Sep 17 00:00:00 2001 From: "Felix (xq) Queißner" Date: Tue, 16 Jun 2020 22:01:59 +0200 Subject: Refactoring: Changes internal structure of requests and unifies a lot of code. Now all errors are handled the same. --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 81ace41..d2f56da 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,6 +11,7 @@ IdentityCollection global_identities; QSettings global_settings { "xqTechnologies", "Kristall" }; QClipboard * global_clipboard; SslTrust global_trust; +FavouriteCollection global_favourites; int main(int argc, char *argv[]) { @@ -33,6 +34,8 @@ int main(int argc, char *argv[]) global_trust.load(global_settings); global_settings.endGroup(); + global_favourites.load(global_settings); + MainWindow w(&app); auto urls = cli_parser.positionalArguments(); -- cgit v1.2.3