summaryrefslogtreecommitdiff
path: root/autodoc/source/tools/tkpchars.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/tools/tkpchars.cxx')
-rw-r--r--autodoc/source/tools/tkpchars.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/autodoc/source/tools/tkpchars.cxx b/autodoc/source/tools/tkpchars.cxx
index f014aab3fa27..eb820e2d75b6 100644
--- a/autodoc/source/tools/tkpchars.cxx
+++ b/autodoc/source/tools/tkpchars.cxx
@@ -75,20 +75,6 @@ CharacterSource::LoadText(csv::bstream & io_rSource)
BeginSource();
}
-void
-CharacterSource::LoadText( const char * i_sSourceText )
-{
- if (dpSource != 0)
- delete [] dpSource;
-
- nSourceSize = strlen(i_sSourceText);
-
- dpSource = new char[nSourceSize+1];
- strcpy( dpSource, i_sSourceText); // SAFE STRCPY (#100211# - checked)
-
- BeginSource();
-}
-
/// KORR_FUTURE: So far, this works only when tokens do not cross inserted text boundaries.
void
CharacterSource::InsertTextAtCurPos( const char * i_sText2Insert )