From a5536d9a0eac922d18f9008122034ca943d50148 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 31 Oct 2013 17:16:50 +0200 Subject: remove unnecessary use of OUString constructor in SW module Change-Id: I015959dce567e5579ebb5c775fb57ae14e1cd3b1 --- sw/source/ui/vba/vbadialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw/source/ui/vba/vbadialog.cxx') diff --git a/sw/source/ui/vba/vbadialog.cxx b/sw/source/ui/vba/vbadialog.cxx index 73397041d631..1c8de59a088a 100644 --- a/sw/source/ui/vba/vbadialog.cxx +++ b/sw/source/ui/vba/vbadialog.cxx @@ -63,7 +63,7 @@ SwVbaDialog::getServiceNames() if ( aServiceNames.getLength() == 0 ) { aServiceNames.realloc( 1 ); - aServiceNames[ 0 ] = OUString("ooo.vba.word.Dialog" ); + aServiceNames[ 0 ] = "ooo.vba.word.Dialog"; } return aServiceNames; } -- cgit