diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:46:08 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:46:08 +0900 |
commit | fb3d13c23bf3cc67b910174f9966581b80638f02 (patch) | |
tree | 0c04ee9a295c95ebaf871fe5600e42e277ea9548 /src/abakus.cpp | |
parent | d343e30ff1ad7373c9467834485469ca990fe67d (diff) | |
download | abakus-fb3d13c23bf3cc67b910174f9966581b80638f02.tar.gz abakus-fb3d13c23bf3cc67b910174f9966581b80638f02.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/abakus.cpp')
-rw-r--r-- | src/abakus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abakus.cpp b/src/abakus.cpp index 80e89af..56f4baa 100644 --- a/src/abakus.cpp +++ b/src/abakus.cpp @@ -66,7 +66,7 @@ int main(int argc, char **argv) MainWindow *win = new MainWindow; app.setMainWidget(win); - app.connect(&app, TQT_SIGNAL(lastWindowClosed()), TQT_SLOT(quit())); + app.connect(&app, TQ_SIGNAL(lastWindowClosed()), TQ_SLOT(quit())); win->show(); win->resize(500, 300); |