diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-08 15:51:46 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-06-08 15:51:46 -0500 |
commit | 6ed1ea98db6b1b369e7561efcc2c666b810e5446 (patch) | |
tree | 69da6d265387965c04a9584547ec42d4d372717d /kinit/autostart.cpp | |
parent | 09d01cacf80d21ad213e6520b35e7f06e9546a83 (diff) | |
download | tdelibs-6ed1ea98db6b1b369e7561efcc2c666b810e5446.tar.gz tdelibs-6ed1ea98db6b1b369e7561efcc2c666b810e5446.zip |
Update XDG information in support of bug report 892.
Diffstat (limited to 'kinit/autostart.cpp')
-rw-r--r-- | kinit/autostart.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kinit/autostart.cpp b/kinit/autostart.cpp index 4824f2b23..488003948 100644 --- a/kinit/autostart.cpp +++ b/kinit/autostart.cpp @@ -128,7 +128,7 @@ AutoStart::loadAutoStartList() continue; } else { - if (!startCondition(config.readEntry("X-KDE-autostart-condition"))) + if (!startCondition(config.readEntry("X-TDE-autostart-condition"))) continue; } if (!config.tryExec()) @@ -193,13 +193,13 @@ AutoStart::loadAutoStartList() if (config.hasKey("X-TDE-autostart-after")) item->startAfter = config.readEntry("X-TDE-autostart-after"); else - item->startAfter = config.readEntry("X-KDE-autostart-after"); + item->startAfter = config.readEntry("X-TDE-autostart-after"); if( m_newStartup ) { if (config.hasKey("X-TDE-autostart-phase")) item->phase = config.readNumEntry("X-TDE-autostart-phase", 2); else - item->phase = config.readNumEntry("X-KDE-autostart-phase", 2); + item->phase = config.readNumEntry("X-TDE-autostart-phase", 2); if (item->phase < 0) item->phase = 0; } @@ -208,7 +208,7 @@ AutoStart::loadAutoStartList() if (config.hasKey("X-TDE-autostart-phase")) item->phase = config.readNumEntry("X-TDE-autostart-phase", 1); else - item->phase = config.readNumEntry("X-KDE-autostart-phase", 1); + item->phase = config.readNumEntry("X-TDE-autostart-phase", 1); if (item->phase < 1) item->phase = 1; } |