summaryrefslogtreecommitdiff
path: root/idlc/inc
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-10-10 13:02:43 +0000
committerOliver Bolte <obo@openoffice.org>2008-10-10 13:02:43 +0000
commit1a784f6768595b62ce05076f22a2c93b90e24cc3 (patch)
tree5ec849b506400ce23a004d352e50414375993297 /idlc/inc
parent8f9181922c32e5e47d11b2537e706aadb7c38407 (diff)
CWS-TOOLING: integrate CWS cmcfixes49
Diffstat (limited to 'idlc/inc')
-rw-r--r--idlc/inc/idlc/astattribute.hxx24
-rw-r--r--idlc/inc/idlc/astbasetype.hxx4
-rw-r--r--idlc/inc/idlc/astconstant.hxx4
-rw-r--r--idlc/inc/idlc/astscope.hxx4
4 files changed, 18 insertions, 18 deletions
diff --git a/idlc/inc/idlc/astattribute.hxx b/idlc/inc/idlc/astattribute.hxx
index 3420fa9a6803..29a1fa0e3cd5 100644
--- a/idlc/inc/idlc/astattribute.hxx
+++ b/idlc/inc/idlc/astattribute.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: astattribute.hxx,v $
- * $Revision: 1.6 $
+ * $Revision: 1.6.16.1 $
*
* This file is part of OpenOffice.org.
*
@@ -80,27 +80,27 @@ public:
AstType const * getType() const
{ return m_pType; }
- const sal_Bool isReadonly()
+ sal_Bool isReadonly() const
{ return ((m_flags & AF_READONLY) == AF_READONLY); }
- const sal_Bool isOptional()
+ sal_Bool isOptional() const
{ return ((m_flags & AF_OPTIONAL) == AF_OPTIONAL); }
- const sal_Bool isAttribute()
+ sal_Bool isAttribute() const
{ return ((m_flags & AF_ATTRIBUTE) == AF_ATTRIBUTE); }
- const sal_Bool isProperty()
+ sal_Bool isProperty() const
{ return ((m_flags & AF_PROPERTY) == AF_PROPERTY); }
- const sal_Bool isBound()
+ sal_Bool isBound() const
{ return ((m_flags & AF_BOUND) == AF_BOUND); }
- const sal_Bool isMayBeVoid()
+ sal_Bool isMayBeVoid() const
{ return ((m_flags & AF_MAYBEVOID) == AF_MAYBEVOID); }
- const sal_Bool isConstrained()
+ sal_Bool isConstrained() const
{ return ((m_flags & AF_CONSTRAINED) == AF_CONSTRAINED); }
- const sal_Bool isTransient()
+ sal_Bool isTransient() const
{ return ((m_flags & AF_TRANSIENT) == AF_TRANSIENT); }
- const sal_Bool isMayBeAmbiguous()
+ sal_Bool isMayBeAmbiguous() const
{ return ((m_flags & AF_MAYBEAMBIGUOUS) == AF_MAYBEAMBIGUOUS); }
- const sal_Bool isMayBeDefault()
+ sal_Bool isMayBeDefault() const
{ return ((m_flags & AF_MAYBEDEFAULT) == AF_MAYBEDEFAULT); }
- const sal_Bool isRemoveable()
+ sal_Bool isRemoveable() const
{ return ((m_flags & AF_REMOVEABLE) == AF_REMOVEABLE); }
sal_Bool dumpBlob(
diff --git a/idlc/inc/idlc/astbasetype.hxx b/idlc/inc/idlc/astbasetype.hxx
index 00670707e9ef..946e154ae6bd 100644
--- a/idlc/inc/idlc/astbasetype.hxx
+++ b/idlc/inc/idlc/astbasetype.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: astbasetype.hxx,v $
- * $Revision: 1.5 $
+ * $Revision: 1.5.16.1 $
*
* This file is part of OpenOffice.org.
*
@@ -55,7 +55,7 @@ public:
}
}
- const ExprType getExprType() const
+ ExprType getExprType() const
{ return m_exprType; }
private:
const ExprType m_exprType;
diff --git a/idlc/inc/idlc/astconstant.hxx b/idlc/inc/idlc/astconstant.hxx
index 73eacda1fca4..8bf5bfe11e3e 100644
--- a/idlc/inc/idlc/astconstant.hxx
+++ b/idlc/inc/idlc/astconstant.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: astconstant.hxx,v $
- * $Revision: 1.5 $
+ * $Revision: 1.5.16.1 $
*
* This file is part of OpenOffice.org.
*
@@ -46,7 +46,7 @@ public:
AstExpression* getConstValue()
{ return m_pConstValue; }
- const ExprType getConstValueType()
+ ExprType getConstValueType() const
{ return m_constValueType; }
sal_Bool dumpBlob(
diff --git a/idlc/inc/idlc/astscope.hxx b/idlc/inc/idlc/astscope.hxx
index e8b2a7eb0554..cc9e0d5153ec 100644
--- a/idlc/inc/idlc/astscope.hxx
+++ b/idlc/inc/idlc/astscope.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: astscope.hxx,v $
- * $Revision: 1.7 $
+ * $Revision: 1.7.16.1 $
*
* This file is part of OpenOffice.org.
*
@@ -42,7 +42,7 @@ public:
AstScope(NodeType nodeType);
virtual ~AstScope();
- const NodeType getScopeNodeType()
+ NodeType getScopeNodeType() const
{ return m_nodeType; }
virtual AstDeclaration* addDeclaration(AstDeclaration* pDecl);