summaryrefslogtreecommitdiff
path: root/vcl/source/window/printdlg.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/printdlg.cxx')
-rw-r--r--vcl/source/window/printdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index 7c03f58eee8c..5630c1c09a08 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -919,7 +919,7 @@ void PrintDialog::setupOptionalUI()
if( ! (rEntry.Value >>= aHelpTexts) )
{
OUString aHelpText;
- if( (rEntry.Value >>= aHelpText) )
+ if( rEntry.Value >>= aHelpText )
{
aHelpTexts.realloc( 1 );
*aHelpTexts.getArray() = aHelpText;
@@ -931,7 +931,7 @@ void PrintDialog::setupOptionalUI()
if( ! (rEntry.Value >>= aHelpIds ) )
{
OUString aHelpId;
- if( (rEntry.Value >>= aHelpId) )
+ if( rEntry.Value >>= aHelpId )
{
aHelpIds.realloc( 1 );
*aHelpIds.getArray() = aHelpId;