diff --git a/doc/html/classUniqueApp.html b/doc/html/classUniqueApp.html index 9c49d5d..e70f430 100644 --- a/doc/html/classUniqueApp.html +++ b/doc/html/classUniqueApp.html @@ -100,7 +100,7 @@ Destructor

-overloaded method of KUniqueApplication. Creates a new instance of kshowmail. +overloaded method of TDEUniqueApplication. Creates a new instance of kshowmail.


Member Data Documentation

diff --git a/doc/html/kshowmail_8h-source.html b/doc/html/kshowmail_8h-source.html index e6148f8..d344cac 100644 --- a/doc/html/kshowmail_8h-source.html +++ b/doc/html/kshowmail_8h-source.html @@ -48,7 +48,7 @@ 00026 // include files for KDE 00027 #include <tdeapplication.h> 00028 #include <tdemainwindow.h> -00029 #include <kuniqueapplication.h> +00029 #include <tdeuniqueapplication.h> 00030 #include <tdeaction.h> 00031 #include <kstdaction.h> 00032 #include <tdelocale.h> diff --git a/doc/html/main_8cpp-source.html b/doc/html/main_8cpp-source.html index 2f8c875..5dc0c40 100644 --- a/doc/html/main_8cpp-source.html +++ b/doc/html/main_8cpp-source.html @@ -35,7 +35,7 @@ 00018 //KDE-Header 00019 #include <tdecmdlineargs.h> 00020 #include <tdeaboutdata.h> -00021 #include <kuniqueapplication.h> +00021 #include <tdeuniqueapplication.h> 00022 #include <tdelocale.h> 00023 #include <kdebug.h> 00024 @@ -103,15 +103,15 @@ 00086 kdDebug () << "KShowmail running in normal mode" << endl; 00087 00088 //add special command line options for unique KDE applications -00089 KUniqueApplication::addCmdLineOptions(); +00089 TDEUniqueApplication::addCmdLineOptions(); 00090 00091 //test whether the new application to start is unique -00092 if (KUniqueApplication::start()) +00092 if (TDEUniqueApplication::start()) 00093 { 00094 //yes, wa can start a unique kshowmail instance 00095 00096 //create a new unique appliction -00097 //UniqueApp is a inherited class of KUniqueApplication +00097 //UniqueApp is a inherited class of TDEUniqueApplication 00098 //see uniqueapp.h 00099 UniqueApp* app = new UniqueApp (); 00100 diff --git a/doc/html/uniqueapp_8h-source.html b/doc/html/uniqueapp_8h-source.html index db0cadd..80be95c 100644 --- a/doc/html/uniqueapp_8h-source.html +++ b/doc/html/uniqueapp_8h-source.html @@ -43,7 +43,7 @@ 00021 //KDE-Header 00022 #include <twin.h> 00023 #include <tdecmdlineargs.h> -00024 #include <kuniqueapplication.h> +00024 #include <tdeuniqueapplication.h> 00025 00026 //KShowMail-Header 00027 #include "kshowmail.h" @@ -51,7 +51,7 @@ 00029 00030 using namespace Constants; 00031 -00037 class UniqueApp : public KUniqueApplication { +00037 class UniqueApp : public TDEUniqueApplication { 00038 00039 public: 00040 diff --git a/kshowmail/kshowmail.h b/kshowmail/kshowmail.h index 230dcf9..c590789 100644 --- a/kshowmail/kshowmail.h +++ b/kshowmail/kshowmail.h @@ -26,7 +26,7 @@ // include files for KDE #include #include -#include +#include #include #include #include diff --git a/kshowmail/main.cpp b/kshowmail/main.cpp index 8e5d96a..ed4b1fb 100644 --- a/kshowmail/main.cpp +++ b/kshowmail/main.cpp @@ -18,7 +18,7 @@ //KDE-Header #include #include -#include +#include #include #include @@ -86,15 +86,15 @@ int main(int argc, char *argv[]) kdDebug () << "KShowmail running in normal mode" << endl; //add special command line options for unique KDE applications - KUniqueApplication::addCmdLineOptions(); + TDEUniqueApplication::addCmdLineOptions(); //test whether the new application to start is unique - if (KUniqueApplication::start()) + if (TDEUniqueApplication::start()) { //yes, wa can start a unique kshowmail instance //create a new unique appliction - //UniqueApp is a inherited class of KUniqueApplication + //UniqueApp is a inherited class of TDEUniqueApplication //see uniqueapp.h UniqueApp* app = new UniqueApp (); diff --git a/kshowmail/uniqueapp.h b/kshowmail/uniqueapp.h index 331119e..5cbbbc6 100644 --- a/kshowmail/uniqueapp.h +++ b/kshowmail/uniqueapp.h @@ -21,7 +21,7 @@ //KDE-Header #include #include -#include +#include //KShowMail-Header #include "kshowmail.h" @@ -34,7 +34,7 @@ using namespace Constants; * @author Eggert Ehmke */ -class UniqueApp : public KUniqueApplication { +class UniqueApp : public TDEUniqueApplication { public: @@ -49,7 +49,7 @@ public: ~UniqueApp(); /** - * overloaded method of KUniqueApplication. Creates a new instance of kshowmail. + * overloaded method of TDEUniqueApplication. Creates a new instance of kshowmail. */ virtual int newInstance ();