diff options
| author | Alexander Blair <snipa@jagtech.io> | 2020-12-03 12:23:01 -0800 |
|---|---|---|
| committer | Alexander Blair <snipa@jagtech.io> | 2020-12-03 12:23:02 -0800 |
| commit | 2eeeadfd10011a771bf73ffe7c678c3532c0ca0d (patch) | |
| tree | 5848000c18f6758845b8c85c11a80249240beacc /src/main/oshelper.cpp | |
| parent | 301b20d19ca2ff5702093c502c6048fc4a25c97e (diff) | |
| parent | ea1fee2f5f842a293458a66638c15ff79e1d101d (diff) | |
| download | monzero-gui-2eeeadfd10011a771bf73ffe7c678c3532c0ca0d.tar.gz monzero-gui-2eeeadfd10011a771bf73ffe7c678c3532c0ca0d.tar.xz monzero-gui-2eeeadfd10011a771bf73ffe7c678c3532c0ca0d.zip | |
Merge pull request #3251
ea1fee2f main: Linux - ask to create desktop entry on the first start (xiphon)
Diffstat (limited to 'src/main/oshelper.cpp')
| -rw-r--r-- | src/main/oshelper.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/oshelper.cpp b/src/main/oshelper.cpp index 9b24262e..7584732e 100644 --- a/src/main/oshelper.cpp +++ b/src/main/oshelper.cpp @@ -46,11 +46,13 @@ #endif #if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) #include <X11/XKBlib.h> +#undef Bool #undef KeyPress #undef KeyRelease #undef FocusIn #undef FocusOut // #undef those Xlib #defines that conflict with QEvent::Type enum +#include "qt/utils.h" #endif #if defined(Q_OS_WIN) @@ -85,6 +87,13 @@ OSHelper::OSHelper(QObject *parent) : QObject(parent) } +void OSHelper::createDesktopEntry() const +{ +#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) + registerXdgMime(); +#endif +} + QString OSHelper::downloadLocation() const { return QStandardPaths::writableLocation(QStandardPaths::DownloadLocation); |
