summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-07-11 13:47:34 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-07-11 13:47:34 +0000
commit727369ce3dff1eb6828e3103aeb88b9babeb9e9f (patch)
tree8c242745d20d604ab8dfedbd4dcb5745f7f579d4 /idlc
parent70c7f13f6bf1bad5073dd91742282b49cb6ad52e (diff)
INTEGRATION: CWS jsc21 (1.5.4); FILE MERGED
2008/06/20 11:12:52 jsc 1.5.4.1: #i86349# remove unused methods
Diffstat (limited to 'idlc')
-rw-r--r--idlc/inc/idlc/astexpression.hxx8
-rw-r--r--idlc/inc/idlc/astoperation.hxx3
2 files changed, 2 insertions, 9 deletions
diff --git a/idlc/inc/idlc/astexpression.hxx b/idlc/inc/idlc/astexpression.hxx
index 266d6c59ed9f..54d2526c6b63 100644
--- a/idlc/inc/idlc/astexpression.hxx
+++ b/idlc/inc/idlc/astexpression.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: astexpression.hxx,v $
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
* This file is part of OpenOffice.org.
*
@@ -106,17 +106,12 @@ class AstExpression
{
public:
// Constructor(s)
- AstExpression(AstExpression *pExpr, ExprType et);
AstExpression(ExprComb c, AstExpression *pExpr1, AstExpression *pExpr2);
- AstExpression(sal_Int16 s);
- AstExpression(sal_uInt16 us);
AstExpression(sal_Int32 l);
AstExpression(sal_Int32 l, ExprType et);
- AstExpression(sal_uInt32 ul);
AstExpression(sal_Int64 h);
AstExpression(sal_uInt64 uh);
- AstExpression(float f);
AstExpression(double d);
AstExpression(::rtl::OString* scopedName);
@@ -157,7 +152,6 @@ public:
{ m_pSymbolicName = pSymbolicName; }
// Evaluation and value coercion
- AstExprValue* eval(EvalKind ek);
AstExprValue* coerce(ExprType type, sal_Bool bAssign=sal_True);
// Evaluate then store value inside this AstExpression
diff --git a/idlc/inc/idlc/astoperation.hxx b/idlc/inc/idlc/astoperation.hxx
index 1d678e045d9a..3134166f731f 100644
--- a/idlc/inc/idlc/astoperation.hxx
+++ b/idlc/inc/idlc/astoperation.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: astoperation.hxx,v $
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
* This file is part of OpenOffice.org.
*
@@ -54,7 +54,6 @@ public:
sal_Bool isOneway()
{ return ((m_flags & OP_ONEWAY) == OP_ONEWAY); }
- sal_Bool isVoid();
bool isVariadic() const;