diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:36:15 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:36:15 -0600 |
commit | bd1f039636efbb681d138bbee07600633625bdb9 (patch) | |
tree | 42a21732694f53d9ee8c9ca9f1b951412c9c4d7e /src/kchmviewwindow_qtextbrowser.cpp | |
parent | c9d6a7478114a66f06bfdde4ad9164cce03e4149 (diff) | |
download | kchmviewer-bd1f039636efbb681d138bbee07600633625bdb9.tar.gz kchmviewer-bd1f039636efbb681d138bbee07600633625bdb9.zip |
Remove additional unneeded tq method conversions
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(); |