summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorOliver Specht <os@openoffice.org>2002-12-05 13:48:16 +0000
committerOliver Specht <os@openoffice.org>2002-12-05 13:48:16 +0000
commit0dd084154b8d6586fb2ed02facd6268afc5f80e0 (patch)
tree1301ab0e16d273fc9f86a3af76d19f5ce50082f6 /svtools
parenta5b8fe92e72a412d2d5b75d1d2ec52cb12e8ae68 (diff)
#103299# syntax corrected
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/pathoptions.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/config/pathoptions.cxx b/svtools/source/config/pathoptions.cxx
index 2145c326cc34..0df1e60e2357 100644
--- a/svtools/source/config/pathoptions.cxx
+++ b/svtools/source/config/pathoptions.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: pathoptions.cxx,v $
*
- * $Revision: 1.59 $
+ * $Revision: 1.60 $
*
- * last change: $Author: os $ $Date: 2002-12-03 16:21:15 $
+ * last change: $Author: os $ $Date: 2002-12-05 14:48:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -388,7 +388,7 @@ BOOL SvtPathOptions_Impl::IsPathReadonly(SvtPathOptions::Pathes ePath)const
{
Reference<XPropertySetInfo> xInfo = xPrSet->getPropertySetInfo();
Property aProperty = xInfo->getPropertyByName(OUString::createFromAscii(aPropNames[ePath].pPropName));
- bReadonly = 0 != aProperty.Attributes & PropertyAttribute::READONLY;
+ bReadonly = 0 != (aProperty.Attributes & PropertyAttribute::READONLY);
}
}
return bReadonly;