diff options
Diffstat (limited to 'vcl/unx/generic/printer/ppdparser.cxx')
-rw-r--r-- | vcl/unx/generic/printer/ppdparser.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/generic/printer/ppdparser.cxx b/vcl/unx/generic/printer/ppdparser.cxx index 6290b8f46e37..b9841d5252dc 100644 --- a/vcl/unx/generic/printer/ppdparser.cxx +++ b/vcl/unx/generic/printer/ppdparser.cxx @@ -54,9 +54,9 @@ namespace psp bool operator()(const css::lang::Locale& i_rLeft, const css::lang::Locale& i_rRight) const { - return i_rLeft.Language.equals( i_rRight.Language ) && - i_rLeft.Country.equals( i_rRight.Country ) && - i_rLeft.Variant.equals( i_rRight.Variant ); + return i_rLeft.Language == i_rRight.Language && + i_rLeft.Country == i_rRight.Country && + i_rLeft.Variant == i_rRight.Variant; } }; |