summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-14 09:45:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:16 +0100
commit388734a14fbb13bf5960d80801d9bf38a1fb408a (patch)
tree16ee4ee0afcd94393872ae323a37c8756aae504e /reportdesign
parent2a6976dfa90adcf9390713a6dcb5bc5e2679c3b4 (diff)
-Werror,-Wunused-member-function
Change-Id: I535617f838f8b0ed7b767c449f40cb54a872be27
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/ui/report/ViewsWindow.cxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/reportdesign/source/ui/report/ViewsWindow.cxx b/reportdesign/source/ui/report/ViewsWindow.cxx
index d601d7bee6c9..910f056f44db 100644
--- a/reportdesign/source/ui/report/ViewsWindow.cxx
+++ b/reportdesign/source/ui/report/ViewsWindow.cxx
@@ -948,8 +948,6 @@ namespace
{
eEndDragObj,
eEndAction,
- eMoveAction,
- eMarkAction,
eForceToAnotherPage,
eBreakAction
};
@@ -958,12 +956,10 @@ namespace
private:
SectionViewAction m_eAction;
sal_Bool m_bCopy;
- Point m_aPoint;
public:
ApplySectionViewAction( sal_Bool _bCopy ) : m_eAction( eEndDragObj ), m_bCopy( _bCopy ) { }
ApplySectionViewAction(SectionViewAction _eAction = eEndAction ) : m_eAction( _eAction ) { }
- ApplySectionViewAction( const Point& _rPoint, SectionViewAction _eAction = eMoveAction ) : m_eAction( _eAction ), m_bCopy( sal_False ), m_aPoint( _rPoint ) { }
void operator() ( const OViewsWindow::TSectionsMap::value_type& _rhs )
{
@@ -977,12 +973,6 @@ namespace
if ( rView.IsAction() )
rView.EndAction ( );
break;
- case eMoveAction:
- rView.MovAction ( m_aPoint );
- break;
- case eMarkAction:
- rView.BegMarkObj ( m_aPoint );
- break;
case eForceToAnotherPage:
rView.ForceMarkedToAnotherPage();
break;