diff options
author | Ken Moore <ken@ixsystems.com> | 2017-05-03 11:21:40 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-05-03 11:21:40 -0400 |
commit | a67ba56d9f0418a3eb99fb4ad8da757365422e43 (patch) | |
tree | d0b60f573c470e19b11ea54223a711296c383469 /src-qt5 | |
parent | Fix up the high-DPI scaling of the system tray icons. (diff) | |
download | lumina-a67ba56d9f0418a3eb99fb4ad8da757365422e43.tar.gz lumina-a67ba56d9f0418a3eb99fb4ad8da757365422e43.tar.bz2 lumina-a67ba56d9f0418a3eb99fb4ad8da757365422e43.zip |
Fix a syntax error in the resulting .desktop file
Diffstat (limited to 'src-qt5')
-rw-r--r-- | src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp index 9f704d12..7b34935e 100644 --- a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp +++ b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp @@ -112,7 +112,7 @@ filename = path + "/" + name + ".desktop"; QFile file(filename); file.open(QIODevice::WriteOnly | QIODevice::Text); QTextStream stream(&file); -stream << "{Desktop Entry]" << endl; +stream << "[Desktop Entry]" << endl; stream << "Type=Application" << endl; stream << "Version=1.0" << endl; stream << namefield << endl; |