diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 12:35:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 09:14:04 +0900 |
commit | 3fc2b59b06925f4e5bafdac5f5fe79764db2d3d4 (patch) | |
tree | fb4b283617fef29d67dd7acc6a993c0601fb23d4 /src/colorpicker.cpp | |
parent | 338117967b664c0a95204c6553bb929adecc0d60 (diff) | |
download | basket-r14.1.4.tar.gz basket-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b6fa5c8b166849065f495768a19625d7e8d98ff0)
Diffstat (limited to 'src/colorpicker.cpp')
-rw-r--r-- | src/colorpicker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/colorpicker.cpp b/src/colorpicker.cpp index 57e34de..17a3ffa 100644 --- a/src/colorpicker.cpp +++ b/src/colorpicker.cpp @@ -28,7 +28,7 @@ /* From TQt documentation: * " Note that only visible widgets can grab mouse input. - * If isVisible() returns FALSE for a widget, that widget cannot call grabMouse(). " + * If isVisible() returns false for a widget, that widget cannot call grabMouse(). " * So, we should use an always visible widget to be able to pick a color from screen, * even by first hidding the main window (user seldomly want to grab a color from BasKet!) * or use a global shortcut (main window can be hidden when hitting that shortcut). |