summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-05-22 16:35:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-05-23 17:34:14 +0200
commit220b7bd84934389f4f71c3f59daa94ff138fe33d (patch)
tree2a980fcb0c086e4e034e1aa813c991fe4230da1a /svx
parent2d428f28a1a6aa301b2243ed3ab936109582b2d3 (diff)
rename SvxGraphCtrlUserCall back to GraphCtrlUserCall
Change-Id: I9c348e34a07ab269217f35633cb3a54ea4f7cf68 Reviewed-on: https://gerrit.libreoffice.org/72804 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/dialog/graphctl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/graphctl.cxx b/svx/source/dialog/graphctl.cxx
index b5e8023d825f..60a2a306128a 100644
--- a/svx/source/dialog/graphctl.cxx
+++ b/svx/source/dialog/graphctl.cxx
@@ -36,7 +36,7 @@
#include <svx/svdpage.hxx>
#include <svx/sdrpaintwindow.hxx>
-void SvxGraphCtrlUserCall::Changed( const SdrObject& rObj, SdrUserCallType eType, const tools::Rectangle& /*rOldBoundRect*/ )
+void GraphCtrlUserCall::Changed( const SdrObject& rObj, SdrUserCallType eType, const tools::Rectangle& /*rOldBoundRect*/ )
{
switch( eType )
{
@@ -65,7 +65,7 @@ SvxGraphCtrl::SvxGraphCtrl(weld::Dialog* pDialog)
, mbInIdleUpdate(false)
, mpDialog(pDialog)
{
- pUserCall.reset(new SvxGraphCtrlUserCall( *this ));
+ pUserCall.reset(new GraphCtrlUserCall( *this ));
aUpdateIdle.SetPriority( TaskPriority::LOWEST );
aUpdateIdle.SetInvokeHandler( LINK( this, SvxGraphCtrl, UpdateHdl ) );
aUpdateIdle.Start();