summaryrefslogtreecommitdiffstats
path: root/kontact/interfaces/core.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kontact/interfaces/core.cpp')
-rw-r--r--kontact/interfaces/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kontact/interfaces/core.cpp b/kontact/interfaces/core.cpp
index ed8848c61..92e0f624d 100644
--- a/kontact/interfaces/core.cpp
+++ b/kontact/interfaces/core.cpp
@@ -86,10 +86,10 @@ KParts::ReadOnlyPart *Core::createPart( const char *libname )
d->lastErrorMessage = KLibLoader::self()->lastErrorMessage();
break;
case KParts::ComponentFactory::ErrNoFactory:
- d->lastErrorMessage = i18n( "Program error: the library %1 does not provide a factory." ).tqarg( libname );
+ d->lastErrorMessage = i18n( "Program error: the library %1 does not provide a factory." ).arg( libname );
break;
case KParts::ComponentFactory::ErrNoComponent:
- d->lastErrorMessage = i18n( "Program error: the library %1 does not support creating components of the specified type" ).tqarg( libname );
+ d->lastErrorMessage = i18n( "Program error: the library %1 does not support creating components of the specified type" ).arg( libname );
break;
}
kdWarning(5601) << d->lastErrorMessage << endl;