diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:14:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:14:36 -0600 |
commit | 98ed486e2f25cfd58e6cc036862bcac0e988f361 (patch) | |
tree | 23b89d4f0244fad16b66aeca0b23f9dd0053fc7e /ksayit/src/fxpluginhandler.cpp | |
parent | 7c140ea1cb70b8a6ecb34454514dcf91d7bcd0c7 (diff) | |
download | tdeaccessibility-98ed486e2f25cfd58e6cc036862bcac0e988f361.tar.gz tdeaccessibility-98ed486e2f25cfd58e6cc036862bcac0e988f361.zip |
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'ksayit/src/fxpluginhandler.cpp')
-rw-r--r-- | ksayit/src/fxpluginhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksayit/src/fxpluginhandler.cpp b/ksayit/src/fxpluginhandler.cpp index 25fc7a9..61d0491 100644 --- a/ksayit/src/fxpluginhandler.cpp +++ b/ksayit/src/fxpluginhandler.cpp @@ -125,7 +125,7 @@ void FXPluginHandler::readConfiguration() if ( factory ){ plugin.p = static_cast<FXPlugin*>( factory->create( (TQObject*)this, (plugin.name).latin1() ) ); if ( plugin.p ){ // Plugin found - plugin.p->setApplication( KApplication::kApplication() ); + plugin.p->setApplication( TDEApplication::kApplication() ); plugin.description = plugin.p->getDescription_KS(); // append to list of active plugins m_lstActivePlugins.append( plugin.name ); @@ -158,7 +158,7 @@ void FXPluginHandler::showEffectGUI(const TQString &pname) if ( factory ){ plugin.p = static_cast<FXPlugin*>( factory->create( (TQObject*)this, (plugin.name).latin1() ) ); if ( plugin.p ){ // Plugin found - plugin.p->setApplication( KApplication::kApplication() ); + plugin.p->setApplication( TDEApplication::kApplication() ); plugin.description = plugin.p->getDescription_KS(); // append to list of active plugins m_lstActivePlugins.append( plugin.name ); |