diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-25 12:13:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-25 12:14:12 +0200 |
commit | eb9c04ed215f9b12584c6e254c36303c6b3865ed (patch) | |
tree | e0bed2cc0a5591321c49fd7f54a31e02a2aea75b /sc/source/ui | |
parent | 7dd09f07a12affb8da0afd731ec2a99575a51e2e (diff) |
convert SPELLCMD_ constants to enum class
Change-Id: I0f57a60a44ddac63a73e0bb35df59b3b25857d43
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/view/gridwin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx index 12fb75fb138c..acb6bd2c4459 100644 --- a/sc/source/ui/view/gridwin.cxx +++ b/sc/source/ui/view/gridwin.cxx @@ -554,7 +554,7 @@ IMPL_LINK_NOARG(ScGridWindow, PopupModeEndHdl) IMPL_LINK( ScGridWindow, PopupSpellingHdl, SpellCallbackInfo*, pInfo ) { - if( pInfo->nCommand == SPELLCMD_STARTSPELLDLG ) + if( pInfo->nCommand == SpellCallbackCommand::STARTSPELLDLG ) pViewData->GetDispatcher().Execute( SID_SPELL_DIALOG, SfxCallMode::ASYNCHRON ); return 0; } |