diff options
Diffstat (limited to 'src/kchmviewwindow_qtextbrowser.cpp')
-rw-r--r-- | src/kchmviewwindow_qtextbrowser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kchmviewwindow_qtextbrowser.cpp b/src/kchmviewwindow_qtextbrowser.cpp index bd9aa33..dea8626 100644 --- a/src/kchmviewwindow_qtextbrowser.cpp +++ b/src/kchmviewwindow_qtextbrowser.cpp @@ -44,7 +44,7 @@ KCHMViewWindow_QTextBrowser::KCHMViewWindow_QTextBrowser( TQTabWidget * parent ) { m_zoomfactor = 0; m_sourcefactory = 0; - tqinvalidate(); + invalidate(); setTextFormat ( TQt::RichText ); connect( this, TQT_SIGNAL( linkClicked (const TQString &) ), this, TQT_SLOT( slotLinkClicked(const TQString &) ) ); @@ -93,7 +93,7 @@ void KCHMViewWindow_QTextBrowser::setZoomFactor( int zoom ) TQTextBrowser::zoomIn( zoom); } -void KCHMViewWindow_QTextBrowser::tqinvalidate( ) +void KCHMViewWindow_QTextBrowser::invalidate( ) { delete m_sourcefactory; m_sourcefactory = new KCHMSourceFactory (this); @@ -105,7 +105,7 @@ void KCHMViewWindow_QTextBrowser::tqinvalidate( ) m_searchText = TQString(); reload(); - KCHMViewWindow::tqinvalidate( ); + KCHMViewWindow::invalidate( ); } int KCHMViewWindow_QTextBrowser::getScrollbarPosition( ) @@ -168,7 +168,7 @@ bool KCHMViewWindow_QTextBrowser::printCurrentPage( ) if ( view.top() >= richText.height() ) break; - TQString msg = i18n( "Printing (page %1)...") .tqarg(page); + TQString msg = i18n( "Printing (page %1)...") .arg(page); ::mainWindow->showInStatusBar( msg ); printer.newPage(); |