diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-01-04 14:10:09 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-01-04 14:10:09 +0000 |
commit | 39a2a2d2436db4396e38bc719bdaa58333345645 (patch) | |
tree | 82b255238305dcf47f3e83ce67e02948c8463041 /sfx2/source | |
parent | 310e0062191c48391cdc61f0e95a8b01c4502f70 (diff) |
INTEGRATION: CWS mba24issues01 (1.36.22); FILE MERGED
2007/12/15 13:18:17 mba 1.36.22.1: #i81588#: typo prevented reading of document language
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/doc/objuno.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/doc/objuno.cxx b/sfx2/source/doc/objuno.cxx index 947e6d5c437a..ad8036fbcebc 100644 --- a/sfx2/source/doc/objuno.cxx +++ b/sfx2/source/doc/objuno.cxx @@ -4,9 +4,9 @@ * * $RCSfile: objuno.cxx,v $ * - * $Revision: 1.36 $ + * $Revision: 1.37 $ * - * last change: $Author: ihi $ $Date: 2007-11-26 13:51:20 $ + * last change: $Author: obo $ $Date: 2008-01-04 15:10:09 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1189,8 +1189,8 @@ void SAL_CALL SfxDocumentInfoObject::setFastPropertyValue(sal_Int32 nHandle, co { lang::Locale aLocale; aValue >>= aLocale; - if ( aLocale.Language != _pImp->aCharLocale.Language && - aLocale.Country != _pImp->aCharLocale.Country && + if ( aLocale.Language != _pImp->aCharLocale.Language || + aLocale.Country != _pImp->aCharLocale.Country || aLocale.Variant != _pImp->aCharLocale.Variant ) { bModified = sal_True; |