summaryrefslogtreecommitdiff
path: root/sc/source/ui/miscdlgs/scuiautofmt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/miscdlgs/scuiautofmt.cxx')
-rw-r--r--sc/source/ui/miscdlgs/scuiautofmt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/miscdlgs/scuiautofmt.cxx b/sc/source/ui/miscdlgs/scuiautofmt.cxx
index e15b9b887c3c..4ddc2f6d3818 100644
--- a/sc/source/ui/miscdlgs/scuiautofmt.cxx
+++ b/sc/source/ui/miscdlgs/scuiautofmt.cxx
@@ -235,7 +235,7 @@ IMPL_LINK_NOARG(ScAutoFormatDlg, AddHdl)
if ( !bFmtInserted && pSelFmtData )
{
String aStrStandard( SfxResId(STR_STANDARD) );
- rtl::OUString aFormatName;
+ OUString aFormatName;
ScStringInputDlg* pDlg;
bool bOk = false;
@@ -348,7 +348,7 @@ IMPL_LINK_NOARG(ScAutoFormatDlg, RenameHdl)
while( !bOk )
{
- rtl::OUString aFormatName = aLbFormat.GetSelectEntry();
+ OUString aFormatName = aLbFormat.GetSelectEntry();
String aEntry;
ScStringInputDlg* pDlg = new ScStringInputDlg( this,
@@ -453,10 +453,10 @@ IMPL_LINK_NOARG(ScAutoFormatDlg, SelFmtHdl)
//------------------------------------------------------------------------
-rtl::OUString ScAutoFormatDlg::GetCurrFormatName()
+OUString ScAutoFormatDlg::GetCurrFormatName()
{
const ScAutoFormatData* p = pFormat->findByIndex(nIndex);
- return p ? p->GetName() : rtl::OUString();
+ return p ? p->GetName() : OUString();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */