diff options
Diffstat (limited to 'kig/filters/native-filter.cc')
-rw-r--r-- | kig/filters/native-filter.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kig/filters/native-filter.cc b/kig/filters/native-filter.cc index 4c83c517..a9bcc241 100644 --- a/kig/filters/native-filter.cc +++ b/kig/filters/native-filter.cc @@ -193,7 +193,7 @@ KigDocument* KigFilterNative::load( const TQString& file ) if ( major > 0 || minor > 9 ) { notSupported( file, i18n( "This file was created by Kig version \"%1\", " - "which this version cannot open." ).tqarg( version ) ); + "which this version cannot open." ).arg( version ) ); return false; } else if ( major == 0 && minor <= 3 ) @@ -204,7 +204,7 @@ KigDocument* KigFilterNative::load( const TQString& file ) "You can try to open this file with an older Kig " "version (0.4 to 0.6),\n" "and then save it again, which will save it in the " - "new format." ).tqarg( version ) ); + "new format." ).arg( version ) ); return false; } else if ( major == 0 && minor <= 6 ) @@ -338,7 +338,7 @@ KigDocument* KigFilterNative::load04( const TQString& file, const TQDomElement& "which this Kig version does not support." "Perhaps you have compiled Kig without support " "for this object type," - "or perhaps you are using an older Kig version." ).tqarg( tmp ) ); + "or perhaps you are using an older Kig version." ).arg( tmp ) ); return false; }; @@ -485,7 +485,7 @@ KigDocument* KigFilterNative::load07( const TQString& file, const TQDomElement& "which this Kig version does not support." "Perhaps you have compiled Kig without support " "for this object type," - "or perhaps you are using an older Kig version." ).tqarg( tmp ) ); + "or perhaps you are using an older Kig version." ).arg( tmp ) ); return false; } |