diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/tbxctrls/extrusioncontrols.cxx | 5 | ||||
-rw-r--r-- | svx/source/tbxctrls/extrusioncontrols.hxx | 3 |
2 files changed, 0 insertions, 8 deletions
diff --git a/svx/source/tbxctrls/extrusioncontrols.cxx b/svx/source/tbxctrls/extrusioncontrols.cxx index 3ada4301154a..b58df356877f 100644 --- a/svx/source/tbxctrls/extrusioncontrols.cxx +++ b/svx/source/tbxctrls/extrusioncontrols.cxx @@ -586,8 +586,6 @@ ExtrusionLightingWindow::ExtrusionLightingWindow(svt::PopupWindowController* pCo , mxBright(m_xBuilder->weld_radio_button("bright")) , mxNormal(m_xBuilder->weld_radio_button("normal")) , mxDim(m_xBuilder->weld_radio_button("dim")) - , mnDirection(FROM_FRONT) - , mbDirectionEnabled(false) { mxLightingSet->SetStyle(WB_TABSTOP | WB_MENUSTYLEVALUESET | WB_FLATVALUESET | WB_NOBORDER | WB_NO_DIRECTSELECT); @@ -651,9 +649,6 @@ void ExtrusionLightingWindow::implSetIntensity( int nLevel, bool bEnabled ) void ExtrusionLightingWindow::implSetDirection( int nDirection, bool bEnabled ) { - mnDirection = nDirection; - mbDirectionEnabled = bEnabled; - if( !bEnabled ) nDirection = FROM_FRONT; diff --git a/svx/source/tbxctrls/extrusioncontrols.hxx b/svx/source/tbxctrls/extrusioncontrols.hxx index e323ee1b9dd7..e4c10ff796ca 100644 --- a/svx/source/tbxctrls/extrusioncontrols.hxx +++ b/svx/source/tbxctrls/extrusioncontrols.hxx @@ -149,9 +149,6 @@ private: Image maImgLightingOn[9]; Image maImgLightingPreview[9]; - int mnDirection; - bool mbDirectionEnabled; - void implSetIntensity( int nLevel, bool bEnabled ); void implSetDirection( int nDirection, bool bEnabled ); |