diff options
Diffstat (limited to 'kttsd/libkttsd/pluginconf.cpp')
-rw-r--r-- | kttsd/libkttsd/pluginconf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kttsd/libkttsd/pluginconf.cpp b/kttsd/libkttsd/pluginconf.cpp index ce68916..0674057 100644 --- a/kttsd/libkttsd/pluginconf.cpp +++ b/kttsd/libkttsd/pluginconf.cpp @@ -38,7 +38,7 @@ */ PlugInConf::PlugInConf( TQWidget *parent, const char *name) : TQWidget(parent, name){ kdDebug() << "PlugInConf::PlugInConf: Running" << endl; - KGlobal::locale()->insertCatalogue("kttsd"); + TDEGlobal::locale()->insertCatalogue("kttsd"); TQString systemPath(getenv("PATH")); // kdDebug() << "Path is " << systemPath << endl; m_path = TQStringList::split(":", systemPath); @@ -187,7 +187,7 @@ TQString PlugInConf::splitLanguageCode(const TQString& languageCode, TQString& c TQString locale = languageCode; TQString langCode; TQString charSet; - KGlobal::locale()->splitLocale(locale, langCode, countryCode, charSet); + TDEGlobal::locale()->splitLocale(locale, langCode, countryCode, charSet); return langCode; } |