diff options
Diffstat (limited to 'tools/assistant/mainwindow.ui.h')
-rw-r--r-- | tools/assistant/mainwindow.ui.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/assistant/mainwindow.ui.h b/tools/assistant/mainwindow.ui.h index d257c7cf9..d9847b8df 100644 --- a/tools/assistant/mainwindow.ui.h +++ b/tools/assistant/mainwindow.ui.h @@ -118,14 +118,14 @@ void MainWindow::setup() if( setupCompleted ) return; - qApp->setOverrideCursor( TQCursor( TQt::WaitCursor ) ); + tqApp->setOverrideCursor( TQCursor( TQt::WaitCursor ) ); statusBar()->message( tr( "Initializing TQt Assistant..." ) ); setupCompleted = TRUE; helpDock->initialize(); connect( actionGoPrevious, SIGNAL( activated() ), tabs, SLOT( backward() ) ); connect( actionGoNext, SIGNAL( activated() ), tabs, SLOT( forward() ) ); connect( actionEditCopy, SIGNAL( activated() ), tabs, SLOT( copy() ) ); - connect( actionFileExit, SIGNAL( activated() ), qApp, SLOT( closeAllWindows() ) ); + connect( actionFileExit, SIGNAL( activated() ), tqApp, SLOT( closeAllWindows() ) ); connect( actionAddBookmark, SIGNAL( activated() ), helpDock, SLOT( addBookmark() ) ); connect( helpDock, SIGNAL( showLink( const TQString& ) ), @@ -167,7 +167,7 @@ void MainWindow::setup() PopupMenu->insertItem( tr( "Vie&ws" ), createDockWindowMenu() ); helpDock->tabWidget->setCurrentPage( config->sideBarPage() ); - qApp->restoreOverrideCursor(); + tqApp->restoreOverrideCursor(); actionGoPrevious->setEnabled( FALSE ); actionGoNext->setEnabled( FALSE ); } @@ -335,8 +335,8 @@ void MainWindow::print() if ( !p.begin( &printer ) ) return; - qApp->setOverrideCursor( TQCursor( TQt::WaitCursor ) ); - qApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput ); + tqApp->setOverrideCursor( TQCursor( TQt::WaitCursor ) ); + tqApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput ); TQPaintDeviceMetrics metrics(p.device()); TQTextBrowser *browser = tabs->currentBrowser(); @@ -352,7 +352,7 @@ void MainWindow::print() richText.setWidth( &p, view.width() ); int page = 1; do { - qApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput ); + tqApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput ); richText.draw( &p, margin, margin, view, palette().active() ); view.moveBy( 0, view.height() ); @@ -365,8 +365,8 @@ void MainWindow::print() page++; } while (TRUE); - qApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput ); - qApp->restoreOverrideCursor(); + tqApp->eventLoop()->processEvents( TQEventLoop::ExcludeUserInput ); + tqApp->restoreOverrideCursor(); } } |