q{cocoa,ppd}printdevice: Fix string comparison
'QPrint::Color' should be returned in case 'ColorModel' is NOT set to 'Gray'. However, the logic was inverted before, since 'qstrcmp()' returns 0 if the two strings match. Also, eliminate a redundant condition: The left-hand side of the '||' already makes sure that 'colorModel' is non-null, so there's no need to check again. (Corresponding cppcheck warning: "Redundant condition: colorModel. '!A || (A && B)' is equivalent to '!A || B'") Change-Id: I965c29e8c020bc9c47a53678e23d94f05be3fd53 Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@qt.io>bb10
parent
100ebf1c97
commit
17ae9305af
|
|
@ -411,7 +411,7 @@ QPrint::ColorMode QCocoaPrintDevice::defaultColorMode() const
|
|||
ppd_option_t *colorModel = ppdFindOption(m_ppd, "DefaultColorModel");
|
||||
if (!colorModel)
|
||||
colorModel = ppdFindOption(m_ppd, "ColorModel");
|
||||
if (!colorModel || (colorModel && !qstrcmp(colorModel->defchoice, "Gray")))
|
||||
if (!colorModel || qstrcmp(colorModel->defchoice, "Gray") != 0)
|
||||
return QPrint::Color;
|
||||
}
|
||||
return QPrint::GrayScale;
|
||||
|
|
|
|||
|
|
@ -427,7 +427,7 @@ QPrint::ColorMode QPpdPrintDevice::defaultColorMode() const
|
|||
ppd_option_t *colorModel = ppdFindOption(m_ppd, "DefaultColorModel");
|
||||
if (!colorModel)
|
||||
colorModel = ppdFindOption(m_ppd, "ColorModel");
|
||||
if (!colorModel || (colorModel && !qstrcmp(colorModel->defchoice, "Gray")))
|
||||
if (!colorModel || qstrcmp(colorModel->defchoice, "Gray") != 0)
|
||||
return QPrint::Color;
|
||||
}
|
||||
return QPrint::GrayScale;
|
||||
|
|
|
|||
Loading…
Reference in New Issue