diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-08 13:14:23 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-08 13:14:23 +0000 |
commit | a9dce69e6383728c7953dfdc350e66c6a6685b69 (patch) | |
tree | d568b11425442550ae51ea3b84aa2c513b83b778 /sw | |
parent | 8eed84eb50bbaff08a320c3e76f10debd16948d8 (diff) |
microopt
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/ww8par.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx index e3557d1c1a..261ab11be4 100644 --- a/sw/source/filter/ww8/ww8par.cxx +++ b/sw/source/filter/ww8/ww8par.cxx @@ -1526,9 +1526,9 @@ void SwWW8ImplReader::ImportDop() sal_Bool bValue = false; if (xInfo.is()) { - if (xInfo->hasPropertyByName(C2U("ApplyFormDesignMode"))) + if (xInfo->hasPropertyByName(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ApplyFormDesignMode")))) { - xDocProps->setPropertyValue(C2U("ApplyFormDesignMode"), + xDocProps->setPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ApplyFormDesignMode")), cppu::bool2any(bValue)); } } |