summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-07-22 13:54:15 -0400
committerKohei Yoshida <kyoshida@novell.com>2011-07-22 14:02:58 -0400
commit78da8efd58a7f70c6ecae1b9f6d6701107581af6 (patch)
tree6ba933825469adbff516076f47d55c83c6276f2f /editeng
parentbb4e4fb6c5a9d07673891ee51f701afd6a658eaf (diff)
nLastAction value assigned but never used. Remove it.
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/editeng/eehtml.cxx2
-rw-r--r--editeng/source/editeng/eehtml.hxx2
2 files changed, 0 insertions, 4 deletions
diff --git a/editeng/source/editeng/eehtml.cxx b/editeng/source/editeng/eehtml.cxx
index b895bf268c78..4e5df550df55 100644
--- a/editeng/source/editeng/eehtml.cxx
+++ b/editeng/source/editeng/eehtml.cxx
@@ -523,7 +523,6 @@ void EditHTMLParser::ImpInsertParaBreak()
pImpEditEngine->aImportHdl.Call( &aImportInfo );
}
aCurSel = pImpEditEngine->ImpInsertParaBreak( aCurSel );
- nLastAction = ACTION_INSERTPARABRK;
}
void EditHTMLParser::ImpSetAttribs( const SfxItemSet& rItems, EditSelection* pSel )
@@ -682,7 +681,6 @@ void EditHTMLParser::ImpInsertText( const String& rText )
}
aCurSel = pImpEditEngine->ImpInsertText( aCurSel, aText );
- nLastAction = ACTION_INSERTTEXT;
}
void EditHTMLParser::SkipGroup( int nEndToken )
diff --git a/editeng/source/editeng/eehtml.hxx b/editeng/source/editeng/eehtml.hxx
index e694cb6e5cd0..631fe5cdacdd 100644
--- a/editeng/source/editeng/eehtml.hxx
+++ b/editeng/source/editeng/eehtml.hxx
@@ -64,8 +64,6 @@ private:
sal_uInt8 nBulletLevel;
sal_uInt8 nNumberingLevel;
- sal_uInt8 nLastAction;
-
void StartPara( sal_Bool bReal );
void EndPara( sal_Bool bReal );
void AnchorStart();