summaryrefslogtreecommitdiff
path: root/idl/inc/lex.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/inc/lex.hxx')
-rw-r--r--idl/inc/lex.hxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/idl/inc/lex.hxx b/idl/inc/lex.hxx
index 1891e3962006..10e41022ae23 100644
--- a/idl/inc/lex.hxx
+++ b/idl/inc/lex.hxx
@@ -59,7 +59,6 @@ public:
void SetColumn( sal_uLong nColumnP ) { nColumn = nColumnP; }
sal_uLong GetColumn() const { return nColumn; }
- bool IsEmpty() const { return nType == SVTOKENTYPE::Empty; }
bool IsComment() const { return nType == SVTOKENTYPE::Comment; }
bool IsInteger() const { return nType == SVTOKENTYPE::Integer; }
bool IsString() const { return nType == SVTOKENTYPE::String; }
@@ -86,8 +85,6 @@ public:
void SetHash( SvStringHashEntry * pHashP )
{ pHash = pHashP; nType = SVTOKENTYPE::HashId; }
- bool HasHash() const
- { return nType == SVTOKENTYPE::HashId; }
bool Is( SvStringHashEntry * pEntry ) const
{ return IsIdentifierHash() && pHash == pEntry; }
};
@@ -190,17 +187,6 @@ public:
return false;
}
- bool ReadIf( SvStringHashEntry* pEntry )
- {
- if( GetToken().Is( pEntry ) )
- {
- GetToken_Next();
- return true;
- }
- else
- return false;
- }
-
bool ReadIfDelimiter()
{
if( GetToken().IsChar()