summaryrefslogtreecommitdiffstats
path: root/ksayit/src/fxpluginhandler.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-20 17:19:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-01-20 17:19:30 +0900
commit3e0dca11471f5fcb566221a18cdb3258d6e61e96 (patch)
tree07c35fb4c479f36a874370abc24ed6ac3b2af61b /ksayit/src/fxpluginhandler.cpp
parent54c48329dfeac9136d7e175abcce1d898774f359 (diff)
downloadtdeaccessibility-3e0dca11471f5fcb566221a18cdb3258d6e61e96.tar.gz
tdeaccessibility-3e0dca11471f5fcb566221a18cdb3258d6e61e96.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksayit/src/fxpluginhandler.cpp')
-rw-r--r--ksayit/src/fxpluginhandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksayit/src/fxpluginhandler.cpp b/ksayit/src/fxpluginhandler.cpp
index 54e3cf1..7c44b12 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( TDEApplication::kApplication() );
+ plugin.p->setApplication( tdeApp );
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( TDEApplication::kApplication() );
+ plugin.p->setApplication( tdeApp );
plugin.description = plugin.p->getDescription_KS();
// append to list of active plugins
m_lstActivePlugins.append( plugin.name );