summaryrefslogtreecommitdiff
path: root/sd/source
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source')
-rw-r--r--sd/source/ui/animations/CustomAnimationDialog.cxx4
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) )
{