diff options
Diffstat (limited to 'kontact/interfaces/core.cpp')
-rw-r--r-- | kontact/interfaces/core.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kontact/interfaces/core.cpp b/kontact/interfaces/core.cpp index e940a53c2..b77fabd25 100644 --- a/kontact/interfaces/core.cpp +++ b/kontact/interfaces/core.cpp @@ -37,8 +37,8 @@ public: TQString lastErrorMessage; }; -Core::Core( TQWidget *parent, const char *name ) - : KParts::MainWindow( parent, name ) +Core::Core( TQWidget *tqparent, const char *name ) + : KParts::MainWindow( tqparent, name ) { d = new Private; TQTimer* timer = new TQTimer( this ); @@ -57,7 +57,7 @@ KParts::ReadOnlyPart *Core::createPart( const char *libname ) kdDebug(5601) << "Core::createPart(): " << libname << endl; TQMap<TQCString,KParts::ReadOnlyPart *>::ConstIterator it; - it = mParts.find( libname ); + it = mParts.tqfind( libname ); if ( it != mParts.end() ) return it.data(); kdDebug(5601) << "Creating new KPart" << endl; |