diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-30 19:26:07 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 16:39:04 +0900 |
| commit | 9aa48be4546906fe3366cecd525375a249c2db6a (patch) | |
| tree | 08cf628a7831c58d1c3a6b197511076d3b2f3029 /style/optionHandler.cpp | |
| parent | 03e1920ea64298be079063179159f4ef04a59604 (diff) | |
| download | tde-style-baghira-9aa48be4.tar.gz tde-style-baghira-9aa48be4.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c2e59c3ad44ec7b9f5aa8dcf781f0791b8baa5f0)
Diffstat (limited to 'style/optionHandler.cpp')
| -rw-r--r-- | style/optionHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/style/optionHandler.cpp b/style/optionHandler.cpp index 589786a..faa639a 100644 --- a/style/optionHandler.cpp +++ b/style/optionHandler.cpp @@ -100,9 +100,9 @@ void OptionHandler::reloadSettings() { if (inactiveButtonColor < 0 || inactiveButtonColor > 3) inactiveButtonColor = config.readNumEntry( "Design_InactiveButtonStyle", Background); if (style_ == Brushed) - bgStipple = TRUE; + bgStipple = true; else if (i3 == 0) - bgStipple = FALSE; + bgStipple = false; else bgStipple = config.readBoolEntry( "Design_StippleBackground", true ); // inactive Button |
