summaryrefslogtreecommitdiff
path: root/transex3
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-07-16 16:44:02 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-07-16 16:44:02 +0000
commitcf28d903e65a386b22974ed3326312f34e2dcd3b (patch)
treef3e170eddf9b57e543b573278afd1cacbd550de2 /transex3
parent7fafcc4e714a11a96201ee53afef6216513783f5 (diff)
INTEGRATION: CWS ooo11rc2 (1.29.12); FILE MERGED
2003/07/07 10:22:08 mh 1.29.12.1: join from ooo11rc, #i10000#
Diffstat (limited to 'transex3')
-rw-r--r--transex3/source/localize.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/transex3/source/localize.cxx b/transex3/source/localize.cxx
index 7efc2b47d9bc..e487ac706c8a 100644
--- a/transex3/source/localize.cxx
+++ b/transex3/source/localize.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: localize.cxx,v $
*
- * $Revision: 1.29 $
+ * $Revision: 1.30 $
*
- * last change: $Author: hr $ $Date: 2003-04-29 16:48:32 $
+ * last change: $Author: hr $ $Date: 2003-07-16 17:44:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -771,7 +771,9 @@ BOOL CheckLanguages( ByteString &rLanguages )
BOOL bReturn = TRUE;
ByteString sTmp( rLanguages );
- if ( sTmp.ToUpperAscii() == "ALL" ) {
+ /* Using gcc-2.95.3 and STLport-4.5 .Equals() must
+ * be used.. using == causes a compile error */
+ if ( sTmp.ToUpperAscii().Equals("ALL") ) {
rLanguages = "";
for ( USHORT i = 0; i < LANGUAGES; i++ ) {
if ( LANGUAGE_ALLOWED( i )) {