diff options
Diffstat (limited to 'ksayit')
-rw-r--r-- | ksayit/Freeverb_plugin/ksayitfreeverblib.cpp | 4 | ||||
-rw-r--r-- | ksayit/Freeverb_plugin/ksayitfreeverblib.h | 2 | ||||
-rw-r--r-- | ksayit/src/main.cpp | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/ksayit/Freeverb_plugin/ksayitfreeverblib.cpp b/ksayit/Freeverb_plugin/ksayitfreeverblib.cpp index dc0e132..02560b6 100644 --- a/ksayit/Freeverb_plugin/ksayitfreeverblib.cpp +++ b/ksayit/Freeverb_plugin/ksayitfreeverblib.cpp @@ -37,13 +37,13 @@ extern "C" }; */ -KInstance *FreeverbPluginFactory::p_instance = 0L; +TDEInstance *FreeverbPluginFactory::p_instance = 0L; // Factory Constructor FreeverbPluginFactory::FreeverbPluginFactory(TQObject *parent, const char* name) { - p_instance = new KInstance("FreeverbPluginFactory"); + p_instance = new TDEInstance("FreeverbPluginFactory"); } diff --git a/ksayit/Freeverb_plugin/ksayitfreeverblib.h b/ksayit/Freeverb_plugin/ksayitfreeverblib.h index 8c224fc..44c9bf8 100644 --- a/ksayit/Freeverb_plugin/ksayitfreeverblib.h +++ b/ksayit/Freeverb_plugin/ksayitfreeverblib.h @@ -40,7 +40,7 @@ public: const TQStringList &args=TQStringList()); private: - static KInstance* p_instance; + static TDEInstance* p_instance; }; diff --git a/ksayit/src/main.cpp b/ksayit/src/main.cpp index c7c9b26..6b23aba 100644 --- a/ksayit/src/main.cpp +++ b/ksayit/src/main.cpp @@ -40,8 +40,8 @@ static const char *description = int main(int argc, char *argv[]) { - KAboutData aboutData( "ksayit", I18N_NOOP("KSayIt"), - KSAYIT_VERSION, description, KAboutData::License_GPL, + TDEAboutData aboutData( "ksayit", I18N_NOOP("KSayIt"), + KSAYIT_VERSION, description, TDEAboutData::License_GPL, "(c) 1996 - 2005, Robert Vogl", 0, 0, "voglrobe@web.de"); aboutData.addAuthor("Robert Vogl",0, "voglrobe@web.de"); TDECmdLineArgs::init( argc, argv, &aboutData ); |