diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-27 02:13:42 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-27 02:13:42 -0600 |
commit | 520c05ef06ce203ad32470730f68402bc7719157 (patch) | |
tree | 8d0bb18bbbecb4c837e232848905e5819db84b81 /tools/qtconfig | |
parent | b82553bf90cb5311cfe8e673b07cf6cffc95fd3c (diff) | |
download | tqt3-520c05ef06ce203ad32470730f68402bc7719157.tar.gz tqt3-520c05ef06ce203ad32470730f68402bc7719157.zip |
Automated update from qt3
Diffstat (limited to 'tools/qtconfig')
-rw-r--r-- | tools/qtconfig/colorbutton.cpp | 2 | ||||
-rw-r--r-- | tools/qtconfig/mainwindow.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/qtconfig/colorbutton.cpp b/tools/qtconfig/colorbutton.cpp index 2ed4e2386..948043774 100644 --- a/tools/qtconfig/colorbutton.cpp +++ b/tools/qtconfig/colorbutton.cpp @@ -67,7 +67,7 @@ void ColorButton::setColor(const TQColor &c) void ColorButton::changeColor() { - TQColor c = TQColorDialog::getColor(col, qApp->activeWindow()); + TQColor c = TQColorDialog::getColor(col, tqApp->activeWindow()); if (c.isValid()) { setColor(c); diff --git a/tools/qtconfig/mainwindow.cpp b/tools/qtconfig/mainwindow.cpp index bf399bd40..0d3cd74db 100644 --- a/tools/qtconfig/mainwindow.cpp +++ b/tools/qtconfig/mainwindow.cpp @@ -572,7 +572,7 @@ void MainWindow::fileSave() void MainWindow::fileExit() { - qApp->closeAllWindows(); + tqApp->closeAllWindows(); } @@ -1123,7 +1123,7 @@ void MainWindow::closeEvent(TQCloseEvent *e) tr("Save changes to settings?"), tr("&Yes"), tr("&No"), tr("&Cancel"), 0, 2)) { case 0: // save - qApp->processEvents(); + tqApp->processEvents(); fileSave(); // fall through intended |