From 655d930476045a2de7f3ead4768bb75df8cf7c82 Mon Sep 17 00:00:00 2001 From: Korrawit Pruegsanusak Date: Sun, 12 Jun 2011 16:40:20 +0700 Subject: Code cleanup * Remove dead code * Fix comment typos Released under LGPLv3+/MPL --- lotuswordpro/source/filter/lwpfoundry.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lotuswordpro/source/filter/lwpfoundry.cxx') diff --git a/lotuswordpro/source/filter/lwpfoundry.cxx b/lotuswordpro/source/filter/lwpfoundry.cxx index 88ce20601e2d..364550fd4fea 100644 --- a/lotuswordpro/source/filter/lwpfoundry.cxx +++ b/lotuswordpro/source/filter/lwpfoundry.cxx @@ -332,7 +332,7 @@ LwpObjectID * LwpFoundry::FindParaStyleByName(OUString name) } /** -* @descr: Get style name registed according the original style name +* @descr: Get style name registered according the original style name * */ OUString LwpFoundry::FindActuralStyleName(OUString name) @@ -358,7 +358,7 @@ void LwpVersionManager::Read(LwpObjectStream *pStrm) void LwpVersionManager::Skip(LwpObjectStream *pStrm) { - /*sal_uInt32 cNextUserVersionID =*/ pStrm->QuickReaduInt32(); + pStrm->QuickReaduInt32(); sal_uInt16 Count = pStrm->QuickReaduInt16(); while(Count--) @@ -369,7 +369,6 @@ void LwpVersionManager::Skip(LwpObjectStream *pStrm) case TAG_USER_VERSION: // TODO: skip the CUserVersionControl pStrm->SeekRel(pStrm->QuickReaduInt16()); - //pStrm->SkipExtra(); //The length has included the extra break; default: -- cgit