summaryrefslogtreecommitdiff
path: root/sdext/source/minimizer/informationdialog.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-06 09:37:03 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-06 09:37:03 +0100
commitdd4c24081865751dee1a74fbee8d4612096a0b2c (patch)
treebcc0da9886b1fbcc26f9da0d0690a82d04fba6f9 /sdext/source/minimizer/informationdialog.cxx
parentc50ab3b3b21a7091a6ceb9c553ba9cd3ff0aaf47 (diff)
loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)
Change-Id: I7efbeda973c2cfa2472eec5b3d309e8e22aa5d9b
Diffstat (limited to 'sdext/source/minimizer/informationdialog.cxx')
-rw-r--r--sdext/source/minimizer/informationdialog.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sdext/source/minimizer/informationdialog.cxx b/sdext/source/minimizer/informationdialog.cxx
index d50d20b0eb1a..9b4b2bcc9551 100644
--- a/sdext/source/minimizer/informationdialog.cxx
+++ b/sdext/source/minimizer/informationdialog.cxx
@@ -298,13 +298,13 @@ void InformationDialog::InitDialog()
css::uno::Reference< css::awt::XItemListener > xItemListener;
InsertImage( *this,
- OUString( "aboutimage" ),
- OUString( "private:standardimage/query" ),
+ "aboutimage",
+ "private:standardimage/query",
5, 5, 25, 25, false );
- InsertFixedText( *this, OUString("fixedtext"), aInfoString, PAGE_POS_X, 6, PAGE_WIDTH, 24, true, 0 );
+ InsertFixedText( *this, "fixedtext", aInfoString, PAGE_POS_X, 6, PAGE_WIDTH, 24, true, 0 );
if ( !maSaveAsURL.isEmpty() )
InsertCheckBox( *this, "OpenNewDocument", xItemListener, getString( STR_AUTOMATICALLY_OPEN ), PAGE_POS_X, 42, PAGE_WIDTH, 8, 1 );
- InsertButton( *this, OUString("button"), mxActionListener, DIALOG_WIDTH / 2 - 25, nDialogHeight - 20, 50, 14, 2, STR_OK );
+ InsertButton( *this, "button", mxActionListener, DIALOG_WIDTH / 2 - 25, nDialogHeight - 20, 50, 14, 2, STR_OK );
bool bOpenNewDocument = mrbOpenNewDocument;
setControlProperty( "OpenNewDocument", "State", Any( (sal_Int16)bOpenNewDocument ) );