summaryrefslogtreecommitdiff
path: root/svx/source/fmcomp/fmgridcl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-24 09:54:09 +0200
committerNoel Grandin <noel@peralex.com>2016-08-25 08:40:00 +0200
commitbd4526b557fe787b3826ddf46bf8009fb45e05e6 (patch)
tree7691ba71b34e9447cf1647641469873715bf883b /svx/source/fmcomp/fmgridcl.cxx
parent492a8c34cc71c7becb59e90ffde71b9072ebab2c (diff)
convert GridRowStatus to scoped enum
Change-Id: I5a3808c563ba09ed734f020f37ffeb5790000874
Diffstat (limited to 'svx/source/fmcomp/fmgridcl.cxx')
-rw-r--r--svx/source/fmcomp/fmgridcl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/fmcomp/fmgridcl.cxx b/svx/source/fmcomp/fmgridcl.cxx
index 6494919154ef..61192c074666 100644
--- a/svx/source/fmcomp/fmgridcl.cxx
+++ b/svx/source/fmcomp/fmgridcl.cxx
@@ -1069,7 +1069,7 @@ void FmGridControl::propertyChange(const css::beans::PropertyChangeEvent& evt)
if (evt.PropertyName == FM_PROP_ISMODIFIED)
{
// modified or clean ?
- GridRowStatus eStatus = ::comphelper::getBOOL(evt.NewValue) ? GRS_MODIFIED : GRS_CLEAN;
+ GridRowStatus eStatus = ::comphelper::getBOOL(evt.NewValue) ? GridRowStatus::Modified : GridRowStatus::Clean;
if (eStatus != xRow->GetStatus())
{
xRow->SetStatus(eStatus);