diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-11 21:15:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-12 09:16:29 +0100 |
commit | 6974f514d3b8cf4b422a70f21fdb57d283ab3774 (patch) | |
tree | ad892afc930eec95c70a6a315f368af3e50dcadc /rsc/source/parser | |
parent | a0864219a12fa09e46e4193003913ac2945fff76 (diff) |
callcatcher: remove unused RscFileInst ByteString ctor
Diffstat (limited to 'rsc/source/parser')
-rw-r--r-- | rsc/source/parser/rscpar.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/rsc/source/parser/rscpar.cxx b/rsc/source/parser/rscpar.cxx index fc3c44c8754d..d3dc291c5631 100644 --- a/rsc/source/parser/rscpar.cxx +++ b/rsc/source/parser/rscpar.cxx @@ -72,23 +72,6 @@ RscFileInst::RscFileInst( RscTypCont * pTC, sal_uLong lIndexSrc, pInput = (char *)rtl_allocateMemory( nInputBufLen ); } -RscFileInst::RscFileInst( RscTypCont * pTC, sal_uLong lIndexSrc, - sal_uLong lFIndex, const ByteString& rBuf ) -{ - pTypCont = pTC; - Init(); - lFileIndex = lFIndex; - lSrcIndex = lIndexSrc; - fInputFile = NULL; - nInputPos = 0; - nInputEndPos = rBuf.Len(); - - // Muss groesser sein wegen Eingabeende bei nInputBufLen < nInputEndPos - nInputBufLen = nInputEndPos +1; - pInput = (char *)rtl_allocateMemory( nInputBufLen +100 ); - memcpy( pInput, rBuf.GetBuffer(), nInputEndPos ); -} - /************************************************************************* |* |* RscFileInst::~RscFileInst() |