diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-09 22:08:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-09 22:08:13 +0900 |
commit | 3edb5122de3bf99176c5bd204166c0c1c654062b (patch) | |
tree | 5d7229c38cdcab0583121810736397c5056757c2 | |
parent | aca413f27e6fd7856fdca86ade5eb6efb249bab0 (diff) | |
download | kbibtex-master.tar.gz kbibtex-master.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 6d9617a..9309f2d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -23,7 +23,7 @@ #include <tqframe.h> #include <tqpixmap.h> #ifdef UNIQUEAPP -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #else // UNIQUEAPP #include <tdeapplication.h> #endif // UNIQUEAPP @@ -49,14 +49,14 @@ static TDECmdLineOptions options[] = }; #ifdef UNIQUEAPP -class KBibTeXApplication: public KUniqueApplication +class KBibTeXApplication: public TDEUniqueApplication #else // UNIQUEAPP class KBibTeXApplication: public TDEApplication #endif // UNIQUEAPP { public: #ifdef UNIQUEAPP - KBibTeXApplication() : KUniqueApplication() + KBibTeXApplication() : TDEUniqueApplication() { // nothing } @@ -116,7 +116,7 @@ int main( int argc, char **argv ) TDECmdLineArgs::addCmdLineOptions( options ); #ifdef UNIQUEAPP - if ( !KUniqueApplication::start() ) + if ( !TDEUniqueApplication::start() ) { kdDebug() << "Reusing existing KBibTeX instance" << endl; return 0; |