diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-30 19:34:21 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 16:57:37 +0900 |
| commit | 6ee9fed5353e9b99793607c914fd4f70683ef15a (patch) | |
| tree | 977fdca37e25cf5cade798ad188f838685f7f621 | |
| parent | dbe5c4cbc7bb12869fea7990f2d0960113906c70 (diff) | |
| download | twin-style-crystal-6ee9fed5.tar.gz twin-style-crystal-6ee9fed5.zip | |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 89556bfdd70e1053709ee0a33be13c696c80a737)
| -rw-r--r-- | client/crystalclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/crystalclient.cpp b/client/crystalclient.cpp index d437ea9..12e0fe6 100644 --- a/client/crystalclient.cpp +++ b/client/crystalclient.cpp @@ -874,9 +874,9 @@ bool CrystalClient::isModalSystemNotification() result = XGetWindowProperty(tqt_xdisplay(), windowId(), kde_wm_system_modal_notification, 0L, 1L, False, XA_CARDINAL, &actual, &format, &n, &left, /*(unsigned char **)*/ &data); if (result == Success && data != None && format == 32 ) { - return TRUE; + return true; } - return FALSE; + return false; } CrystalButton* CrystalClient::addButtons(TQBoxLayout *layout, const TQString& s) |
