summaryrefslogtreecommitdiff
path: root/svtools/source/svrtf/parrtf.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/svrtf/parrtf.cxx')
-rw-r--r--svtools/source/svrtf/parrtf.cxx24
1 files changed, 2 insertions, 22 deletions
diff --git a/svtools/source/svrtf/parrtf.cxx b/svtools/source/svrtf/parrtf.cxx
index bd08a32942bf..a475343dcaac 100644
--- a/svtools/source/svrtf/parrtf.cxx
+++ b/svtools/source/svrtf/parrtf.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -28,8 +29,6 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_svtools.hxx"
-/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil -*- */
-
#include <stdio.h> // for EOF
#include <rtl/tencinfo.h>
#include <tools/stream.hxx>
@@ -339,12 +338,6 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
case '\'':
{
-#if 0
- // #i35653 patch from cmc
- ByteString aByteString(static_cast<char>(GetHexValue()));
- if (aByteString.Len())
- aStrBuffer.Append(String(aByteString, GetSrcEncoding()));
-#else
ByteString aByteString;
while (1)
{
@@ -395,7 +388,6 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
if (aByteString.Len())
aStrBuffer.Append(String(aByteString, GetSrcEncoding()));
-#endif
}
break;
case '\\':
@@ -692,16 +684,4 @@ void SvRTFParser::SetEncoding( rtl_TextEncoding eEnc )
SetSrcEncoding(eEnc);
}
-#ifdef USED
-void SvRTFParser::SaveState( int nToken )
-{
- SvParser::SaveState( nToken );
-}
-
-void SvRTFParser::RestoreState()
-{
- SvParser::RestoreState();
-}
-#endif
-
-/* vi:set tabstop=4 shiftwidth=4 expandtab: */
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */