diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-10 00:31:56 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-10 00:31:56 +0200 |
| commit | 656391ecc0555b3462266b886434ae0f120a401c (patch) | |
| tree | bb87b6889c2dae9a5c65c6b9bcb783139bebdf3c /src/main.cpp | |
| parent | 0739bce0be84e8ccebdc632726efd0fd6f612789 (diff) | |
| download | kristall-656391ecc0555b3462266b886434ae0f120a401c.tar.gz | |
Adds some right click menus, fixes bug in gopher.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 180a49b..b7974de 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,5 @@ #include "mainwindow.hpp" +#include "kristall.hpp" #include <QApplication> #include <QUrl> @@ -7,11 +8,14 @@ #include <QDebug> QSettings global_settings { "xqTechnologies", "Kristall" }; +QClipboard * global_clipboard; int main(int argc, char *argv[]) { QApplication app(argc, argv); + global_clipboard = app.clipboard(); + QCommandLineParser cli_parser; cli_parser.parse(app.arguments()); |
