summaryrefslogtreecommitdiff
path: root/idlc/inc/idlc
diff options
context:
space:
mode:
authorThorsten Behrens <thb@openoffice.org>2010-09-21 20:16:16 +0200
committerThorsten Behrens <thb@openoffice.org>2010-09-21 20:16:16 +0200
commitb12337c8ae206a5ed7fcf14727b0c2627a9a1731 (patch)
tree15946df0a64b59e388814dd12e7b5a79a53a1276 /idlc/inc/idlc
parent9fdc831a2a743de3d0e2af443a01fcc1e385fa07 (diff)
Revert "idlc-error-offset.diff: Add character offset for idlc errors"
Breaks bison on OSX. This reverts commit 55c5db853fc0d96179874b4c01dba2774ecf5cd1.
Notes
split repo tag: ure_OOO_BUILD_3_2_99_0_PRE
Diffstat (limited to 'idlc/inc/idlc')
-rw-r--r--idlc/inc/idlc/idlc.hxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/idlc/inc/idlc/idlc.hxx b/idlc/inc/idlc/idlc.hxx
index 663698143f7e..cec8e58900fb 100644
--- a/idlc/inc/idlc/idlc.hxx
+++ b/idlc/inc/idlc/idlc.hxx
@@ -102,12 +102,6 @@ public:
{ m_warningCount++; }
sal_uInt32 getLineNumber()
{ return m_lineNumber; }
- sal_uInt32 getOffsetStart()
- { return m_offsetStart; }
- sal_uInt32 getOffsetEnd()
- { return m_offsetEnd; }
- void setOffset( sal_uInt32 start, sal_uInt32 end)
- { m_offsetStart = start; m_offsetEnd = end; }
void setLineNumber(sal_uInt32 lineNumber)
{ m_lineNumber = lineNumber; }
void incLineNumber()
@@ -142,8 +136,6 @@ private:
sal_uInt32 m_errorCount;
sal_uInt32 m_warningCount;
sal_uInt32 m_lineNumber;
- sal_uInt32 m_offsetStart;
- sal_uInt32 m_offsetEnd;
ParseState m_parseState;
StringSet m_includes;
};