Kaydet (Commit) 196fcbd8 authored tarafından Matteo Casalin's avatar Matteo Casalin

Remove unuseful member variable

Change-Id: I618242aa496a18dc656c6a4ffa4cbf3032eeae4a
üst 3df44c3c
...@@ -67,7 +67,6 @@ SwFormatTablePage::SwFormatTablePage(Window* pParent, const SfxItemSet& rSet) ...@@ -67,7 +67,6 @@ SwFormatTablePage::SwFormatTablePage(Window* pParent, const SfxItemSet& rSet)
, pTblData(0) , pTblData(0)
, nSaveWidth(0) , nSaveWidth(0)
, nMinTableWidth(MINLAY) , nMinTableWidth(MINLAY)
, nOldAlign(0)
, bModified(false) , bModified(false)
, bFull(false) , bFull(false)
, bHtmlMode(false) , bHtmlMode(false)
...@@ -485,10 +484,8 @@ void SwFormatTablePage::Reset( const SfxItemSet* ) ...@@ -485,10 +484,8 @@ void SwFormatTablePage::Reset( const SfxItemSet* )
m_aLeftMF.SaveValue(); m_aLeftMF.SaveValue();
m_aRightMF.SaveValue(); m_aRightMF.SaveValue();
nOldAlign = pTblData->GetAlign();
bool bSetRight = false, bSetLeft = false; bool bSetRight = false, bSetLeft = false;
switch( nOldAlign ) switch( pTblData->GetAlign() )
{ {
case text::HoriOrientation::NONE: case text::HoriOrientation::NONE:
m_pFreeBtn->Check(); m_pFreeBtn->Check();
......
...@@ -64,7 +64,6 @@ class SwFormatTablePage : public SfxTabPage ...@@ -64,7 +64,6 @@ class SwFormatTablePage : public SfxTabPage
SwTableRep* pTblData; SwTableRep* pTblData;
SwTwips nSaveWidth; SwTwips nSaveWidth;
SwTwips nMinTableWidth; SwTwips nMinTableWidth;
sal_uInt16 nOldAlign;
bool bModified; bool bModified;
bool bFull:1; bool bFull:1;
bool bHtmlMode : 1; bool bHtmlMode : 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment