summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-09-12 15:03:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-09-12 15:03:58 +0200
commit1ded401b3f8597153420f5691eaa3d4f082e179e (patch)
treea5901d3ffd1b36d624430136c60386004a206a8e /vcl
parentde55aa0f639a451aae05ec515cfa58d4bbdd8816 (diff)
loplugin:unnecessaryparen
Change-Id: I6fe1690b6f66e31753da993a256b7586478ef4f1
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/generic/printer/ppdparser.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/generic/printer/ppdparser.cxx b/vcl/unx/generic/printer/ppdparser.cxx
index 3f9a0d131677..26315920ac2d 100644
--- a/vcl/unx/generic/printer/ppdparser.cxx
+++ b/vcl/unx/generic/printer/ppdparser.cxx
@@ -642,7 +642,7 @@ PPDParser::PPDParser( const OUString& rFile, std::vector<PPDKey*> keys) :
aBuf.append( PWG_TO_POINTS(pPWGMedia -> length) );
if ( pPaperDimensionValue )
pPaperDimensionValue->m_aValue = aBuf.makeStringAndClear();
- if ((aValueName).equals(pKey -> getDefaultValue() -> m_aOption)) {
+ if (aValueName.equals(pKey -> getDefaultValue() -> m_aOption)) {
pImageableAreas -> m_pDefaultValue = pImageableAreaValue;
pPaperDimensions -> m_pDefaultValue = pPaperDimensionValue;
}