diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-21 16:02:25 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-21 16:02:25 +0100 |
commit | d3c3c55afffa2143556a1c5aa4323bf22145000c (patch) | |
tree | 624d2c9006c67ec2e03f3800cfd5bdf2f3f74747 /svx/source | |
parent | 3c5dfbfaff63d25a10807ea6314a05e799645433 (diff) |
RTL_CONSTASCII_USTRINGPARAM in libs core 44
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/fmcomp/fmgridif.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/fmcomp/fmgridif.cxx b/svx/source/fmcomp/fmgridif.cxx index d4327546b454..88f325e6d033 100644 --- a/svx/source/fmcomp/fmgridif.cxx +++ b/svx/source/fmcomp/fmgridif.cxx @@ -802,7 +802,7 @@ void SAL_CALL FmXGridControl::setDesignMode(sal_Bool bOn) throw( RuntimeExceptio // prepare firing an event aModeChangeEvent.Source = *this; - aModeChangeEvent.NewMode = ::rtl::OUString::createFromAscii( mbDesignMode ? "design" : "alive" ); + aModeChangeEvent.NewMode = mbDesignMode ? ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "design" )) : ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "alive" )); } // --- </mutex_lock> --- |