diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:28:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:28:14 -0600 |
commit | 6379d18e0ec321e0e08a1389ee4a12f0eaa5992e (patch) | |
tree | dd3e6f3b6c190bc5ea47516ddbe04c6777fa6a04 /kttsd/kcmkttsmgr/selectevent.cpp | |
parent | 0b54abbdf80cef08e5cb8ef7b8b7af31c54dd9b4 (diff) | |
download | tdeaccessibility-6379d18e0ec321e0e08a1389ee4a12f0eaa5992e.tar.gz tdeaccessibility-6379d18e0ec321e0e08a1389ee4a12f0eaa5992e.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kttsd/kcmkttsmgr/selectevent.cpp')
-rw-r--r-- | kttsd/kcmkttsmgr/selectevent.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kttsd/kcmkttsmgr/selectevent.cpp b/kttsd/kcmkttsmgr/selectevent.cpp index de97a6c..685e1f7 100644 --- a/kttsd/kcmkttsmgr/selectevent.cpp +++ b/kttsd/kcmkttsmgr/selectevent.cpp @@ -60,7 +60,7 @@ SelectEvent::SelectEvent(TQWidget* parent, const char* name, WFlags fl, const TQ TQString relativePath = *it; if ( !relativePath.isEmpty() ) { - KConfig* config = new KConfig(relativePath, true, false, "data"); + TDEConfig* config = new TDEConfig(relativePath, true, false, "data"); config->setGroup( TQString::fromLatin1("!Global!") ); TQString icon = config->readEntry(TQString::fromLatin1("IconName"), TQString::fromLatin1("misc")); @@ -90,7 +90,7 @@ void SelectEvent::slotEventSrcComboBox_activated(int index) TQListViewItem* item = 0; TQString eventSrc = m_eventSrcNames[index]; TQString configFilename = eventSrc + TQString::fromLatin1( "/eventsrc" ); - KConfig* config = new KConfig( configFilename, true, false, "data" ); + TDEConfig* config = new TDEConfig( configFilename, true, false, "data" ); TQStringList eventNames = config->groupList(); uint eventNamesCount = eventNames.count(); for (uint ndx = 0; ndx < eventNamesCount; ++ndx) |