diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-23 00:38:42 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-23 10:35:45 +0100 |
commit | 050b80a6fc9b6f0c550c5ca20fa3c93e9552c13a (patch) | |
tree | adde9066eb1669bc9df616b839c96ab6070d1b12 /sd/source | |
parent | af6ce167af13f896e1786ef7d3c2d194aaf1c3dd (diff) |
ditch deprecated api
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/animations/CustomAnimationDialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/animations/CustomAnimationDialog.cxx b/sd/source/ui/animations/CustomAnimationDialog.cxx index b75eaf23620c..a10db789f2b6 100644 --- a/sd/source/ui/animations/CustomAnimationDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationDialog.cxx @@ -1947,7 +1947,7 @@ CustomAnimationDurationTabPage::CustomAnimationDurationTabPage(Window* pParent, if( nPos != LISTBOX_ENTRY_NOTFOUND ) mpCBDuration->SelectEntryPos( nPos ); else - mpCBDuration->SetText( String::CreateFromDouble( fDuration ) ); + mpCBDuration->SetText(rtl::OUString::valueOf(fDuration)); } } @@ -1978,7 +1978,7 @@ CustomAnimationDurationTabPage::CustomAnimationDurationTabPage(Window* pParent, if( nPos != LISTBOX_ENTRY_NOTFOUND ) mpCBRepeat->SelectEntryPos( nPos ); else - mpCBRepeat->SetText( String::CreateFromDouble( fRepeat ) ); + mpCBRepeat->SetText(rtl::OUString::valueOf(fRepeat)); } else if( aRepeatCount.getValueType() == ::getCppuType((const Timing*)0) ) { |