diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:58 -0600 |
commit | 9ea931fb1bda0802797c1d38fd903b5451b91a5a (patch) | |
tree | 52871b68f40404504f789e2abefc24080510e51e /kteatime/toplevel.cpp | |
parent | 2178da111f72dc574457d5242d120b4d10ea5edd (diff) | |
download | tdetoys-9ea931fb1bda0802797c1d38fd903b5451b91a5a.tar.gz tdetoys-9ea931fb1bda0802797c1d38fd903b5451b91a5a.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kteatime/toplevel.cpp')
-rw-r--r-- | kteatime/toplevel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kteatime/toplevel.cpp b/kteatime/toplevel.cpp index 06c31b7..33b0b78 100644 --- a/kteatime/toplevel.cpp +++ b/kteatime/toplevel.cpp @@ -69,7 +69,7 @@ TopLevel::TopLevel() : KSystemTray() teas.clear(); - KConfig *config = kapp->config(); + TDEConfig *config = kapp->config(); config->setGroup("Teas"); if (config->hasKey("Number")) { @@ -186,7 +186,7 @@ TopLevel::TopLevel() : KSystemTray() /* (not currently needed) void TopLevel::queryExit() { - KConfig *config = kapp->config(); + TDEConfig *config = kapp->config(); // config->sync(); } */ @@ -409,7 +409,7 @@ void TopLevel::teaSelected(int index) menu->setItemChecked(index, true); current_selected = index; - KConfig *config = kapp->config(); + TDEConfig *config = kapp->config(); config->setGroup("General"); config->writeEntry("Tea", current_selected); } @@ -833,7 +833,7 @@ void TopLevel::config() rebuildTeaMenus(); // and store to config - KConfig *config = kapp->config(); + TDEConfig *config = kapp->config(); // remove old-style entries from default-group (if present) if (config->hasKey("UserTea")) config->deleteEntry("UserTea"); |