summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-26 16:59:44 +0200
committerNoel Grandin <noel@peralex.com>2014-05-27 08:20:12 +0200
commit0f2824b117b65bd9c9db2870edc159419ae0c1d9 (patch)
tree2e45a7d5e0d60b97bf989fd21c0ae35392ba5823 /svtools
parent9af0abebfd61641c9d028505caa864cdf898e35b (diff)
remove more unnecessary use of OUString constructor
Change-Id: Iae14cb3df65295b6894fd9e05411c5698e9c8aba
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/uno/genericunodialog.cxx2
-rw-r--r--svtools/source/uno/wizard/unowizard.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/uno/genericunodialog.cxx b/svtools/source/uno/genericunodialog.cxx
index 9d7020939629..f02d99c19138 100644
--- a/svtools/source/uno/genericunodialog.cxx
+++ b/svtools/source/uno/genericunodialog.cxx
@@ -208,7 +208,7 @@ sal_Int16 SAL_CALL OGenericUnoDialog::execute( ) throw(RuntimeException, std::e
if (m_bExecuting)
throw RuntimeException(
- OUString( "already executing the dialog (recursive call)" ),
+ "already executing the dialog (recursive call)",
*this
);
diff --git a/svtools/source/uno/wizard/unowizard.cxx b/svtools/source/uno/wizard/unowizard.cxx
index 3e3e851519ae..c3f20273c686 100644
--- a/svtools/source/uno/wizard/unowizard.cxx
+++ b/svtools/source/uno/wizard/unowizard.cxx
@@ -206,7 +206,7 @@ namespace {
{
if ( i_rPaths[i][0] != nFirstPageId )
throw IllegalArgumentException(
- OUString( "All paths must start with the same page id." ),
+ "All paths must start with the same page id.",
i_rContext, 2 );
}
}