summaryrefslogtreecommitdiffstats
path: root/tdegtk
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:09 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:09 -0600
commit0bdf0e7bb553fe27b75edf64a73eafbee61d99d9 (patch)
treeeeca898f2e137d1f2348c523c3f050c80b23c780 /tdegtk
parent337312fb5f3579291dd3ae458b3628ea20d740fa (diff)
downloadgtk3-tqt-engine-0bdf0e7bb553fe27b75edf64a73eafbee61d99d9.tar.gz
gtk3-tqt-engine-0bdf0e7bb553fe27b75edf64a73eafbee61d99d9.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'tdegtk')
-rw-r--r--tdegtk/tdegtk-theme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdegtk/tdegtk-theme.cpp b/tdegtk/tdegtk-theme.cpp
index cb0cb6f..4314aa7 100644
--- a/tdegtk/tdegtk-theme.cpp
+++ b/tdegtk/tdegtk-theme.cpp
@@ -178,13 +178,13 @@ int showIconsOnButtons;
int toolbarStyle;
TQString tdeConfigValue(const TQString& section, const TQString& name, const TQString& def) {
- KConfig currentConfig;
+ TDEConfig currentConfig;
currentConfig.setGroup(section);
return currentConfig.readEntry(name, def);
}
bool tdeBoolConfigValue(const TQString& section, const TQString& name, bool def) {
- KConfig currentConfig;
+ TDEConfig currentConfig;
currentConfig.setGroup(section);
return currentConfig.readBoolEntry(name, def);
}