diff options
Diffstat (limited to 'kbabel/kbabeldict/kbabeldictbox.cpp')
-rw-r--r-- | kbabel/kbabeldict/kbabeldictbox.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kbabel/kbabeldict/kbabeldictbox.cpp b/kbabel/kbabeldict/kbabeldictbox.cpp index fa483d85..4fa44389 100644 --- a/kbabel/kbabeldict/kbabeldictbox.cpp +++ b/kbabel/kbabeldict/kbabeldictbox.cpp @@ -335,7 +335,7 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl ) #if 0 // try to find installed modules by looking into directories // kbabeldict/modules and getting all files *.rc - TQStringList dirList = KGlobal::dirs()->findDirs("data" + TQStringList dirList = TDEGlobal::dirs()->findDirs("data" ,"kbabeldict/modules"); for ( TQStringList::Iterator it = dirList.begin(); it != dirList.end() @@ -372,7 +372,7 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl ) rcConfig.setGroup("SearchEngine"); TQStringList appList = rcConfig.readListEntry("Applications"); - TDEInstance *inst = KGlobal::instance(); + TDEInstance *inst = TDEGlobal::instance(); if(inst && !appList.isEmpty() && !appList.contains(inst->instanceName())) { continue; @@ -407,11 +407,11 @@ KBabelDictBox::KBabelDictBox( TQWidget* parent, const char* name, WFlags fl ) } } - kdDebug(KBABEL_SEARCH) << "Now using trader for " << KGlobal::instance()->instanceName() << endl; + kdDebug(KBABEL_SEARCH) << "Now using trader for " << TDEGlobal::instance()->instanceName() << endl; // try to find installed modules by KTrader KTrader::OfferList offers = KTrader::self()->query("KBabelDictModule", - "('"+KGlobal::instance()->instanceName()+"' in [Applications])"); + "('"+TDEGlobal::instance()->instanceName()+"' in [Applications])"); for(KTrader::OfferList::ConstIterator it = offers.begin(); it != offers.end(); ++it ) { @@ -992,7 +992,7 @@ void KBabelDictBox::showResult(TQListViewItem *item) { if(info->lastChange.isValid()) { - dateLabel->setText(KGlobal::locale()->formatDate( + dateLabel->setText(TDEGlobal::locale()->formatDate( info->lastChange.date(),true)); } else @@ -1166,7 +1166,7 @@ void KBabelDictBox::nextInfo() if(info->lastChange.isValid()) { - dateLabel->setText(KGlobal::locale()->formatDate( + dateLabel->setText(TDEGlobal::locale()->formatDate( info->lastChange.date(),true)); } else |