diff options
Diffstat (limited to 'kghostview/kgv_miniwidget.cpp')
-rw-r--r-- | kghostview/kgv_miniwidget.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kghostview/kgv_miniwidget.cpp b/kghostview/kgv_miniwidget.cpp index 1d38ba88..c5bbdedf 100644 --- a/kghostview/kgv_miniwidget.cpp +++ b/kghostview/kgv_miniwidget.cpp @@ -441,7 +441,7 @@ void KGVMiniWidget::showPage( int pagenumber ) /* KNotifyClient::userEvent (i18n("KGhostview cannot load the document, \"%1\".\n" - "It appears to be broken.").tqarg( _fileName ), + "It appears to be broken.").arg( _fileName ), KNotifyClient::Messagebox); _psWidget->disableInterpreter(); _psFile=0; @@ -486,13 +486,13 @@ void KGVMiniWidget::updateStatusBarText( int pageNumber ) else if( !_usePageLabels || document()->format() == KGVDocument::PDF ) text = i18n( "Page %1 of %2" ) - .tqarg( pageNumber + 1 ) - .tqarg( dsc()->page_count() ); + .arg( pageNumber + 1 ) + .arg( dsc()->page_count() ); else text = i18n( "Page %1 (%2 of %3)" ) - .tqarg( dsc()->page()[ _options.page() ].label ) - .tqarg( pageNumber + 1 ) - .tqarg( dsc()->page_count() ); + .arg( dsc()->page()[ _options.page() ].label ) + .arg( pageNumber + 1 ) + .arg( dsc()->page_count() ); emit setStatusBarText( text ); } @@ -534,7 +534,7 @@ void KGVMiniWidget::buildTOC() } } else { - marklist->insertItem( TQString::tqfromLatin1( "1" ), 0 ); + marklist->insertItem( TQString::fromLatin1( "1" ), 0 ); } } |