summaryrefslogtreecommitdiffstats
path: root/svx/source/dialog/dlgutil.cxx
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2001-03-22 10:00:04 +0000
committerThomas Lange <tl@openoffice.org>2001-03-22 10:00:04 +0000
commitb6ee36f5e46229ef7fd439d35012fa0051151eff (patch)
treeb9e50d03bbe2b00754726e27d26b1d8ebddfe21c /svx/source/dialog/dlgutil.cxx
parentSvxLanguageBox contructor now specifies third argument explicitly (diff)
downloadcore-b6ee36f5e46229ef7fd439d35012fa0051151eff.tar.gz
core-b6ee36f5e46229ef7fd439d35012fa0051151eff.zip
GetDicInfoStr modified for SvxLanguageBox
Diffstat (limited to 'svx/source/dialog/dlgutil.cxx')
-rw-r--r--svx/source/dialog/dlgutil.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/svx/source/dialog/dlgutil.cxx b/svx/source/dialog/dlgutil.cxx
index 195a8dcc581e..c5b5b7513a7c 100644
--- a/svx/source/dialog/dlgutil.cxx
+++ b/svx/source/dialog/dlgutil.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dlgutil.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: pb $ $Date: 2000-11-10 08:00:04 $
+ * last change: $Author: tl $ $Date: 2001-03-22 11:00:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -110,12 +110,14 @@ String GetDicInfoStr( const String& rName, const USHORT nLang, const BOOL bNeg )
aTmp.AppendAscii( sTmp );
}
- aTmp += sal_Unicode( '[' );
if ( LANGUAGE_NONE == nLang )
aTmp += String( ResId( RID_SVXSTR_LANGUAGE_ALL, DIALOG_MGR() ) );
else
+ {
+ aTmp += sal_Unicode( '[' );
aTmp += ::GetLanguageString( (LanguageType)nLang );
- aTmp += sal_Unicode( ']' );
+ aTmp += sal_Unicode( ']' );
+ }
return aTmp;
}