summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-10 22:36:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-11 12:06:23 +0100
commit41e055112ea778c7a45d6cc5f0ce32e44bdb031c (patch)
tree83bca8c70dc94beb5ebaad07f432fa135826bc4b /svtools
parentcc84a792f2131d8e5b244f239f5ba71e4ef5d48d (diff)
String::CreateFromInt32->rtl::OUString::valueOf
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/uno/wizard/wizardshell.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/uno/wizard/wizardshell.cxx b/svtools/source/uno/wizard/wizardshell.cxx
index f6a20206daf7..37b033864edc 100644
--- a/svtools/source/uno/wizard/wizardshell.cxx
+++ b/svtools/source/uno/wizard/wizardshell.cxx
@@ -239,7 +239,7 @@ namespace svt { namespace uno
DBG_UNHANDLED_EXCEPTION();
}
// fallback for ill-behaved clients: the numeric state
- return String::CreateFromInt32( i_nState );
+ return rtl::OUString::valueOf(static_cast<sal_Int32>(i_nState));
}
//------------------------------------------------------------------------------------------------------------------