From 94c9dc38220d50d037075127ad46add8a264ef26 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 20 Jan 2013 00:23:32 -0600 Subject: Rename KApplication to TDEApplication to avoid conflicts with KDE4 --- kbabel/kbabeldict/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'kbabel/kbabeldict/main.cpp') diff --git a/kbabel/kbabeldict/main.cpp b/kbabel/kbabeldict/main.cpp index e4de092a..fb783fa4 100644 --- a/kbabel/kbabeldict/main.cpp +++ b/kbabel/kbabeldict/main.cpp @@ -47,7 +47,7 @@ #include "kbabelsplash.h" #include -class KBabelDictApplication : public KApplication +class KBabelDictApplication : public TDEApplication { public: KBabelDictApplication(); @@ -58,7 +58,7 @@ private: }; KBabelDictApplication::KBabelDictApplication() - : KApplication() + : TDEApplication() , topLevel(0) { TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); @@ -69,7 +69,7 @@ KBabelDictApplication::KBabelDictApplication() if(showSplash) { timer.start(2000,true); - KApplication::setOverrideCursor(KCursor::waitCursor()); + TDEApplication::setOverrideCursor(KCursor::waitCursor()); splash = new KBabelSplash(); splash->show(); } @@ -88,7 +88,7 @@ KBabelDictApplication::KBabelDictApplication() } if(showSplash) { - KApplication::restoreOverrideCursor(); + TDEApplication::restoreOverrideCursor(); } TQObject::connect( topLevel, TQT_SIGNAL( destroyed() ), @@ -128,7 +128,7 @@ int main(int argc, char **argv) TDECmdLineArgs::addCmdLineOptions( options ); // Add options from other components - KApplication::addCmdLineOptions(); + TDEApplication::addCmdLineOptions(); KBabelDictApplication app; -- cgit v1.2.1