summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdlayer.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-10-12 12:10:25 +0000
committerOliver Bolte <obo@openoffice.org>2006-10-12 12:10:25 +0000
commitc86245765736a8674d7946e336e44026278c8c3e (patch)
tree131a6d5b5357a6cec9161bdf93f1357990433e68 /svx/source/svdraw/svdlayer.cxx
parent218dc9cf2c517bc3230f7cf5b771f3aa12067b0a (diff)
INTEGRATION: CWS sb59 (1.10.60); FILE MERGED
2006/08/28 12:58:01 sb 1.10.60.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'svx/source/svdraw/svdlayer.cxx')
-rw-r--r--svx/source/svdraw/svdlayer.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdlayer.cxx b/svx/source/svdraw/svdlayer.cxx
index c139d8d68ea4..838c11d9afaf 100644
--- a/svx/source/svdraw/svdlayer.cxx
+++ b/svx/source/svdraw/svdlayer.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: svdlayer.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 05:52:00 $
+ * last change: $Author: obo $ $Date: 2006-10-12 13:10:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -237,7 +237,7 @@ void SdrLayer::SetName(const XubString& rNewName)
}
}
-FASTBOOL SdrLayer::operator==(const SdrLayer& rCmpLayer) const
+bool SdrLayer::operator==(const SdrLayer& rCmpLayer) const
{
return (nID == rCmpLayer.nID
&& nType == rCmpLayer.nType
@@ -418,7 +418,7 @@ const SdrLayerAdmin& SdrLayerAdmin::operator=(const SdrLayerAdmin& rSrcLayerAdmi
return *this;
}
-FASTBOOL SdrLayerAdmin::operator==(const SdrLayerAdmin& rCmpLayerAdmin) const
+bool SdrLayerAdmin::operator==(const SdrLayerAdmin& rCmpLayerAdmin) const
{
if (pParent!=rCmpLayerAdmin.pParent ||
aLayer.Count()!=rCmpLayerAdmin.aLayer.Count() ||
@@ -597,7 +597,7 @@ SdrLayerID SdrLayerAdmin::GetUniqueLayerID() const
{
SetOfByte aSet;
sal_Bool bDown = (pParent == NULL);
- sal_Int32 j;
+ USHORT j;
for (j=0; j<GetLayerCount(); j++)
{
aSet.Set(GetLayer(j)->GetID());