diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-08 13:26:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-08 13:41:44 +0900 |
commit | eab2995851748c44d333fe168a1c141ccee193ab (patch) | |
tree | 980cdffc97ce11d6c5c78079da55c4275f2e34b2 /src/modules/dialog/libkvidialog.cpp | |
parent | 236b93c7266b84269b4be5841d8575b5f3432065 (diff) | |
download | kvirc-eab2995851748c44d333fe168a1c141ccee193ab.tar.gz kvirc-eab2995851748c44d333fe168a1c141ccee193ab.zip |
Remove various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/dialog/libkvidialog.cpp')
-rw-r--r-- | src/modules/dialog/libkvidialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/dialog/libkvidialog.cpp b/src/modules/dialog/libkvidialog.cpp index d6ef068..fdc61a0 100644 --- a/src/modules/dialog/libkvidialog.cpp +++ b/src/modules/dialog/libkvidialog.cpp @@ -526,7 +526,7 @@ void KviKvsCallbackFileDialog::done(int code) // ...so skip out of this call stack and ask KviApp to destroy us just // when the control returns to the main loop. // If the module is unloaded then , KviApp will notice it and will NOT delete the dialog - g_pApp->collectGarbage(TQT_TQOBJECT(this)); + g_pApp->collectGarbage(this); // calling dialog.unload here WILL lead to a sigsegv (this is SURE // with a lot of qt versions that have the ugly file dialog "accept before this reference" bug) @@ -657,7 +657,7 @@ void KviKvsCallbackImageDialog::done(int code) // ...so skip out of this call stack and ask KviApp to destroy us just // when the control returns to the main loop. // If the module is unloaded then , KviApp will notice it and will NOT delete the dialog - g_pApp->collectGarbage(TQT_TQOBJECT(this)); + g_pApp->collectGarbage(this); // calling dialog.unload here WILL lead to a sigsegv (this is SURE // with a lot of qt versions that have the ugly file dialog "accept before this reference" bug) |