mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-02-06 20:33:38 +01:00
Fixx some typos in #15.
This commit is contained in:
parent
cb63b96304
commit
ef1204828c
@ -581,8 +581,8 @@ unix:!mac {
|
||||
desktop_file.files = resources/desktop/$${TARGET}.desktop
|
||||
desktop_file.path = $$quote($$PREFIX/share/applications/)
|
||||
|
||||
desktop_file_autostart.files = resources/desktop/$${TARGET}.autostart
|
||||
desktop_file_autostart.path = $$quote($$PREFIX/share/$$TARGET/autostart/)
|
||||
desktop_file_autostart.files = resources/desktop/$${TARGET}.desktop.autostart
|
||||
desktop_file_autostart.path = $$quote($$PREFIX/share/$${TARGET}/autostart/)
|
||||
|
||||
translations.files = $$OUT_PWD/l10n
|
||||
translations.path = $$quote($$PREFIX/share/$$TARGET/)
|
||||
|
@ -207,7 +207,7 @@
|
||||
#endif
|
||||
|
||||
#if defined(Q_OS_LINUX)
|
||||
#define APP_DESKTOP_ENTRY_PATH APP_PREFIX + QString("/share/autostart")
|
||||
#define APP_DESKTOP_ENTRY_PATH APP_PREFIX + QString("/share/rssguard/autostart")
|
||||
#define APP_DESKTOP_SOURCE_ENTRY_FILE "rssguard.desktop.autostart"
|
||||
#define APP_DESKTOP_ENTRY_FILE "rssguard.desktop"
|
||||
#define APP_LANG_PATH APP_PREFIX + QString("/share/rssguard/l10n")
|
||||
|
@ -147,7 +147,7 @@ bool SystemFactory::setAutoStartStatus(const AutoStartStatus &new_status) {
|
||||
const QString destination_file = getAutostartDesktopFileLocation();
|
||||
|
||||
switch (new_status) {
|
||||
case SystemFactory::Enabled:
|
||||
case SystemFactory::Enabled: {
|
||||
if (QFile::exists(destination_file)) {
|
||||
if (!QFile::remove(destination_file)) {
|
||||
return false;
|
||||
@ -158,8 +158,10 @@ bool SystemFactory::setAutoStartStatus(const AutoStartStatus &new_status) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return QFile::copy(QString(APP_DESKTOP_ENTRY_PATH) + QDir::separator() + APP_DESKTOP_SOURCE_ENTRY_FILE,
|
||||
getAutostartDesktopFileLocation());
|
||||
const QString source_autostart_desktop_file = QString(APP_DESKTOP_ENTRY_PATH) + QDir::separator() + APP_DESKTOP_SOURCE_ENTRY_FILE;
|
||||
|
||||
return QFile::copy(source_autostart_desktop_file, getAutostartDesktopFileLocation());
|
||||
}
|
||||
|
||||
case SystemFactory::Disabled:
|
||||
return QFile::remove(getAutostartDesktopFileLocation());
|
||||
|
Loading…
x
Reference in New Issue
Block a user