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:10:40 +0900 |
| commit | b6fa5c8b166849065f495768a19625d7e8d98ff0 (patch) | |
| tree | 5c44a49d7bcd1655ec021df5eb37a61a39ae0295 /src/colorpicker.cpp | |
| parent | a47244adc8fdc2d540720cadae7e9f5eee0e441f (diff) | |
| download | basket-b6fa5c8b166849065f495768a19625d7e8d98ff0.tar.gz basket-b6fa5c8b166849065f495768a19625d7e8d98ff0.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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). |
