summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/docshell/dbdocimp.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/docshell/dbdocimp.cxx b/sc/source/ui/docshell/dbdocimp.cxx
index 612eb4996982..56cc78aa9cfb 100644
--- a/sc/source/ui/docshell/dbdocimp.cxx
+++ b/sc/source/ui/docshell/dbdocimp.cxx
@@ -343,9 +343,9 @@ bool ScDBDocFunc::DoImport( SCTAB nTab, const ScImportParam& rParam,
if (!(nInserted & 15))
{
OUString aPict = ScResId( STR_PROGRESS_IMPORT );
- OUString aText = aPict.getToken(0,'#');
- aText += OUString::number( nInserted );
- aText += aPict.getToken(1,'#');
+ OUString aText = aPict.getToken(0, '#')
+ + OUString::number( nInserted )
+ + aPict.getToken(1, '#');
aProgress.SetStateText( 0, aText );
}