summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/rawconverter/plugin_rawconverter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/rawconverter/plugin_rawconverter.cpp')
-rw-r--r--kipi-plugins/rawconverter/plugin_rawconverter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kipi-plugins/rawconverter/plugin_rawconverter.cpp b/kipi-plugins/rawconverter/plugin_rawconverter.cpp
index 18ec120..483a063 100644
--- a/kipi-plugins/rawconverter/plugin_rawconverter.cpp
+++ b/kipi-plugins/rawconverter/plugin_rawconverter.cpp
@@ -72,8 +72,8 @@ typedef KGenericFactory<Plugin_RawConverter> Factory;
K_EXPORT_COMPONENT_FACTORY( kipiplugin_rawconverter,
Factory("kipiplugin_rawconverter"))
-Plugin_RawConverter::Plugin_RawConverter(TQObject *tqparent, const char*, const TQStringList&)
- : KIPI::Plugin( Factory::instance(), tqparent, "RawConverter")
+Plugin_RawConverter::Plugin_RawConverter(TQObject *parent, const char*, const TQStringList&)
+ : KIPI::Plugin( Factory::instance(), parent, "RawConverter")
{
kdDebug( 51001 ) << "Loaded RawConverter" << endl;
}
@@ -100,7 +100,7 @@ void Plugin_RawConverter::setup( TQWidget* widget )
addAction( singleAction_ );
addAction( batchAction_ );
- KIPI::Interface* interface = dynamic_cast<KIPI::Interface*>( tqparent() );
+ KIPI::Interface* interface = dynamic_cast<KIPI::Interface*>( parent() );
if ( !interface )
{
@@ -147,7 +147,7 @@ bool Plugin_RawConverter::checkBinaries()
void Plugin_RawConverter::slotActivateSingle()
{
- KIPI::Interface* interface = dynamic_cast<KIPI::Interface*>( tqparent() );
+ KIPI::Interface* interface = dynamic_cast<KIPI::Interface*>( parent() );
if (!interface)
{
@@ -180,7 +180,7 @@ void Plugin_RawConverter::slotActivateSingle()
void Plugin_RawConverter::slotActivateBatch()
{
- KIPI::Interface* interface = dynamic_cast<KIPI::Interface*>( tqparent() );
+ KIPI::Interface* interface = dynamic_cast<KIPI::Interface*>( parent() );
if (!interface)
{