diff options
author | Norwegian Rock Cat <qt-info@nokia.com> | 2009-07-07 08:05:02 (GMT) |
---|---|---|
committer | Norwegian Rock Cat <qt-info@nokia.com> | 2009-07-07 08:05:02 (GMT) |
commit | 343e8b7e75c98a4fd1b692a230de8d1132988705 (patch) | |
tree | 39db161e6cb3947e3f5f0dd4d4084144f2655fa5 /src/gui | |
parent | 3814b2adf50b5724e3375ea2048d13960c8aed82 (diff) | |
download | Qt-343e8b7e75c98a4fd1b692a230de8d1132988705.zip Qt-343e8b7e75c98a4fd1b692a230de8d1132988705.tar.gz Qt-343e8b7e75c98a4fd1b692a230de8d1132988705.tar.bz2 |
Fix typo in color calculation.
Argh! It's divide by 256 not 265. The worst part was that I used the
same values in Cocoa as well, so they were both "damaged." It should be
good now.
Task-number: 257499
Reviewed-by: Prasanth Ullattil
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/kernel/qt_mac.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/kernel/qt_mac.cpp b/src/gui/kernel/qt_mac.cpp index 27df5d1..0c3b707 100644 --- a/src/gui/kernel/qt_mac.cpp +++ b/src/gui/kernel/qt_mac.cpp @@ -134,7 +134,7 @@ QColor qcolorForThemeTextColor(ThemeTextColor themeColor) #ifdef Q_OS_MAC32 RGBColor c; GetThemeTextColor(themeColor, 32, true, &c); - QColor color = QColor(c.red / 265, c.green / 256, c.blue / 256); + QColor color = QColor(c.red / 256, c.green / 256, c.blue / 256); return color; #else // There is no equivalent to GetThemeTextColor in 64-bit and it was rather bad that @@ -156,13 +156,13 @@ QColor qcolorForThemeTextColor(ThemeTextColor themeColor) case kThemeTextColorAlertInactive: case kThemeTextColorDialogInactive: case kThemeTextColorPlacardInactive: - return QColor(67, 69, 69, 255); + return QColor(69, 69, 69, 255); case kThemeTextColorPopupButtonInactive: case kThemeTextColorPopupLabelInactive: case kThemeTextColorPushButtonInactive: case kThemeTextColorTabFrontInactive: case kThemeTextColorBevelButtonInactive: - return QColor(123, 127, 127, 255); + return QColor(127, 127, 127, 255); default: { QNativeImage nativeImage(16,16, QNativeImage::systemFormat()); CGRect cgrect = CGRectMake(0, 0, 16, 16); |