diff options
author | Tobias Madl <tobias.madl.dev@gmail.com> | 2014-11-26 14:53:25 +0000 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-12-01 07:43:31 +0000 |
commit | 14596452e781f6a66bcc63b0c447c852df1f2896 (patch) | |
tree | c225569f229679084b081021c8c51cfdaf12eb21 /sw/source/ui/dbui/mmaddressblockpage.cxx | |
parent | 96ec51292301a105effacfcceec44f696ee6e0f0 (diff) |
fdo#84938: replace EVENT_ constants with enum
Change-Id: I8275832d8dae43b374bddd48520d11592e9a6a1f
Reviewed-on: https://gerrit.libreoffice.org/13134
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/source/ui/dbui/mmaddressblockpage.cxx')
-rw-r--r-- | sw/source/ui/dbui/mmaddressblockpage.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/dbui/mmaddressblockpage.cxx b/sw/source/ui/dbui/mmaddressblockpage.cxx index f96c004c1b7f..675b1e8c7b32 100644 --- a/sw/source/ui/dbui/mmaddressblockpage.cxx +++ b/sw/source/ui/dbui/mmaddressblockpage.cxx @@ -999,7 +999,7 @@ void SwAssignFieldsControl::Command( const CommandEvent& rCEvt ) bool SwAssignFieldsControl::PreNotify( NotifyEvent& rNEvt ) { - if(rNEvt.GetType() == EVENT_COMMAND) + if(rNEvt.GetType() == MouseNotifyEvent::COMMAND) { const CommandEvent* pCEvt = rNEvt.GetCommandEvent(); const sal_uInt16 nCmd = pCEvt->GetCommand(); @@ -1286,12 +1286,12 @@ void AddressMultiLineEdit::Notify(SfxBroadcaster& /*rBC*/, const SfxHint& rHint) bool AddressMultiLineEdit::PreNotify( NotifyEvent& rNEvt ) { bool nHandled = false; - if( EVENT_KEYINPUT == rNEvt.GetType() && + if( MouseNotifyEvent::KEYINPUT == rNEvt.GetType() && rNEvt.GetKeyEvent()->GetCharCode()) { nHandled = true; } - else if(EVENT_MOUSEBUTTONDOWN == rNEvt.GetType()) { + else if(MouseNotifyEvent::MOUSEBUTTONDOWN == rNEvt.GetType()) { const MouseEvent *pMEvt = rNEvt.GetMouseEvent(); if(pMEvt->GetClicks() >= 2) nHandled = true; |