diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 19:12:21 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 19:12:21 +0900 |
commit | 59999a5ad2e7a43bba88d4d25ef970c2fbc575f0 (patch) | |
tree | a7bd90575f42faec41c75058e1a14b73b808973f /src/main.cpp | |
parent | fbbe9cf4e456b0e045d43979ecd4dd620e4183fe (diff) | |
download | universal-indent-gui-tqt-59999a5ad2e7a43bba88d4d25ef970c2fbc575f0.tar.gz universal-indent-gui-tqt-59999a5ad2e7a43bba88d4d25ef970c2fbc575f0.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/main.cpp')
-rwxr-xr-x | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index c71d80f..dded8ed 100755 --- a/src/main.cpp +++ b/src/main.cpp @@ -160,7 +160,7 @@ int main(int argc, char *argv[]) try { - app.connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit())); // TODO: remove when no longer needed + app.connect(&app, TQ_SIGNAL(lastWindowClosed()), &app, TQ_SLOT(quit())); // TODO: remove when no longer needed returnValue = app.exec(); } catch (std::exception &ex) |