From 4bb787f41f7cdefac2aac33ef59317b7157302c1 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:38:13 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- ksim/library/themeloader.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'ksim/library/themeloader.cpp') diff --git a/ksim/library/themeloader.cpp b/ksim/library/themeloader.cpp index 60e2031..947ba73 100644 --- a/ksim/library/themeloader.cpp +++ b/ksim/library/themeloader.cpp @@ -47,7 +47,7 @@ class KSim::Theme::Private TQStringList file; TQStringList dFile; - KConfig *globalReader; + TDEConfig *globalReader; TQString altTheme; TQString location; const TQValueVector &fileNames; @@ -94,7 +94,7 @@ class KSim::ThemeLoader::Private public: TQValueVector fileNames; TQStringList imageTypes; - KConfig *globalReader; + TDEConfig *globalReader; bool recolour; TQColor pixelColour; }; @@ -764,7 +764,7 @@ KSim::Theme::Theme() KSim::Theme::Theme(const TQString &url, const TQString &fileName, int alt, const TQValueVector &vector, const TQStringList &list, - KConfig *globalReader) + TDEConfig *globalReader) { create(vector, list, globalReader); init(url, fileName, alt); @@ -774,7 +774,7 @@ KSim::Theme::Theme(const TQString &url, const TQString &fileName, int alt, } void KSim::Theme::create(const TQValueVector &vector, - const TQStringList &list, KConfig *globalReader) + const TQStringList &list, TDEConfig *globalReader) { d = new Private(vector, list); d->globalReader = globalReader; @@ -917,7 +917,7 @@ void KSim::ThemeLoader::reload() if (currentUrl() != defaultUrl()) { if (!d->globalReader) - d->globalReader = new KConfig(defaultUrl() + "gkrellmrc_ksim"); + d->globalReader = new TDEConfig(defaultUrl() + "gkrellmrc_ksim"); } else { delete d->globalReader; @@ -998,24 +998,24 @@ TQString KSim::ThemeLoader::parseConfig(const TQString &url, TQString line(origStream.readLine().simplifyWhiteSpace()); if (line.find(reg) == 0) // find the location of the * comments - // replace all * comments with # comments so KConfig doesn't complain + // replace all * comments with # comments so TDEConfig doesn't complain line.replace(reg, "#"); if (line.find("#") == -1) { // find the location of the string 'gkrellmms' if (line.findRev("=") == -1) { // if found we check for the string '=' int numLoc = line.findRev(numbers); if (numLoc != -1) - // if '=' doesn't exist we add one so KConfig doesn't complain + // if '=' doesn't exist we add one so TDEConfig doesn't complain line.insert(numLoc, " = "); numLoc = line.findRev(number); if (numLoc != -1) - // if '=' doesn't exist we add one so KConfig doesn't complain + // if '=' doesn't exist we add one so TDEConfig doesn't complain line.insert(numLoc, " = "); numLoc = line.findRev(minus); if (numLoc != -1) - // replace the '-' with an '=' so KConfig doesn't get confused + // replace the '-' with an '=' so TDEConfig doesn't get confused line.replace(TQRegExp("-"), "="); } } @@ -1186,7 +1186,7 @@ KSim::ThemeLoader::ThemeLoader() d->imageTypes << "png" << "jpg" << "jpeg" << "xpm" << "gif"; if (currentUrl() != defaultUrl()) - d->globalReader = new KConfig(defaultUrl() + "gkrellmrc_ksim"); + d->globalReader = new TDEConfig(defaultUrl() + "gkrellmrc_ksim"); else d->globalReader = 0; -- cgit v1.2.3