diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-10 23:24:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 11:42:54 +0100 |
commit | b7b19814bc280e0f05dbbe4bf04758b092613762 (patch) | |
tree | 87a228ceb9776cddff3b782d3f98cadcde74f3a3 /sd/source/ui/unoidl | |
parent | 221d4b8da1230600f362c5b376f71ba50a408d5a (diff) |
createFromAscii -> RTL_CONSTASCII_USTRINGPARAM
Diffstat (limited to 'sd/source/ui/unoidl')
-rw-r--r-- | sd/source/ui/unoidl/SdUnoSlideView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/unoidl/SdUnoSlideView.cxx b/sd/source/ui/unoidl/SdUnoSlideView.cxx index 3e4866dc9b03..59564ef71985 100644 --- a/sd/source/ui/unoidl/SdUnoSlideView.cxx +++ b/sd/source/ui/unoidl/SdUnoSlideView.cxx @@ -168,7 +168,7 @@ void SAL_CALL SdUnoSlideView::setCurrentPage ( if (xProperties.is()) { sal_uInt16 nPageNumber(0); - if (xProperties->getPropertyValue(::rtl::OUString::createFromAscii("Number")) >>= nPageNumber) + if (xProperties->getPropertyValue(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Number"))) >>= nPageNumber) { mrSlideSorter.GetController().GetCurrentSlideManager()->SwitchCurrentSlide( nPageNumber-1, |