diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:49:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:49:30 -0600 |
commit | a9bde819f2b421dcc44741156e75eca4bb5fb4f4 (patch) | |
tree | d087071b1e8fcf79698938efec19f8e48bab0799 /kalarm/preferences.cpp | |
parent | 5c4a80ead2b1fe57dc6a8c29d0368792344cd61e (diff) | |
download | tdepim-a9bde819f2b421dcc44741156e75eca4bb5fb4f4.tar.gz tdepim-a9bde819f2b421dcc44741156e75eca4bb5fb4f4.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kalarm/preferences.cpp')
-rw-r--r-- | kalarm/preferences.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kalarm/preferences.cpp b/kalarm/preferences.cpp index 3daf433fe..c77c72f1c 100644 --- a/kalarm/preferences.cpp +++ b/kalarm/preferences.cpp @@ -214,7 +214,7 @@ void Preferences::initialise() { // Initialise static variables here to avoid static initialisation // sequencing errors. - mDefault_messageFont = TQFont(KGlobalSettings::generalFont().family(), 16, TQFont::Bold); + mDefault_messageFont = TQFont(TDEGlobalSettings::generalFont().family(), 16, TQFont::Bold); mInstance = new Preferences; @@ -252,7 +252,7 @@ void Preferences::read() { initialise(); - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); config->setGroup(GENERAL_SECTION); TQStringList cols = config->readListEntry(MESSAGE_COLOURS); if (!cols.count()) @@ -358,7 +358,7 @@ void Preferences::read() */ void Preferences::save(bool syncToDisc) { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); config->setGroup(GENERAL_SECTION); config->writeEntry(VERSION_NUM, KALARM_VERSION); TQStringList colours; @@ -428,12 +428,12 @@ void Preferences::save(bool syncToDisc) void Preferences::syncToDisc() { - KGlobal::config()->sync(); + TDEGlobal::config()->sync(); } void Preferences::updateStartOfDayCheck() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); config->setGroup(GENERAL_SECTION); config->writeEntry(START_OF_DAY_CHECK, startOfDayCheck()); config->sync(); @@ -549,7 +549,7 @@ bool Preferences::notifying(const TQString& messageID) */ void Preferences::convertOldPrefs() { - KConfig* config = KGlobal::config(); + KConfig* config = TDEGlobal::config(); config->setGroup(GENERAL_SECTION); int version = KAlarm::getVersionNumber(config->readEntry(VERSION_NUM)); if (version >= KAlarm::Version(1,4,22)) |