summaryrefslogtreecommitdiff
path: root/svx/source/table/svdotable.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-18 14:32:13 +0200
committerNoel Grandin <noel@peralex.com>2016-08-19 08:18:37 +0200
commit178153e8220aa3bf29078f6df4ed6acd0b2f61e4 (patch)
tree7c42b2bc53c9d70e0029568a727504f92fd259e1 /svx/source/table/svdotable.cxx
parent6078d593fa27eab2035d97e7ef69872564e30f60 (diff)
convert SdrUserCallType to scoped enum
Change-Id: I0121b17242faee4238d82836453cec695f508db0
Diffstat (limited to 'svx/source/table/svdotable.cxx')
-rw-r--r--svx/source/table/svdotable.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx
index 028ce8c2fa31..6fe87334721c 100644
--- a/svx/source/table/svdotable.cxx
+++ b/svx/source/table/svdotable.cxx
@@ -1324,7 +1324,7 @@ void SdrTableObj::onEditOutlinerStatusEvent( EditStatus* pEditStatus )
ActionChanged();
BroadcastObjectChange();
if (aRect0 != maRect)
- SendUserCall(SDRUSERCALL_RESIZE,aRect0);
+ SendUserCall(SdrUserCallType::Resize,aRect0);
}
}
@@ -1943,7 +1943,7 @@ bool SdrTableObj::AdjustTextFrameWidthAndHeight()
SetRectsDirty();
SetChanged();
BroadcastObjectChange();
- SendUserCall(SDRUSERCALL_RESIZE,aBoundRect0);
+ SendUserCall(SdrUserCallType::Resize,aBoundRect0);
}
return bRet;
}
@@ -1983,7 +1983,7 @@ void SdrTableObj::ReformatText()
NbcReformatText();
SetChanged();
BroadcastObjectChange();
- SendUserCall(SDRUSERCALL_RESIZE,aBoundRect0);
+ SendUserCall(SdrUserCallType::Resize,aBoundRect0);
}