diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-14 14:33:10 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-15 10:05:02 +0200 |
commit | 4f4cff08aac32db6fa580423b5fde661c8b0743a (patch) | |
tree | cf91ac27509e32e724b87387bf07d6c8d35b695b /vcl/source/control/menubtn.cxx | |
parent | 24181bfb0b49a011e201ecc111bac3b48ad5a1ff (diff) |
convert POPUPMENU_ constants to scoped enum
Change-Id: I4cdaf36581d1e1daa39929e621070d18a9996852
Diffstat (limited to 'vcl/source/control/menubtn.cxx')
-rw-r--r-- | vcl/source/control/menubtn.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/menubtn.cxx b/vcl/source/control/menubtn.cxx index 9e4525690825..c77663fb8a11 100644 --- a/vcl/source/control/menubtn.cxx +++ b/vcl/source/control/menubtn.cxx @@ -57,7 +57,7 @@ void MenuButton::ExecuteMenu() Rectangle aRect( aPos, aSize ); SetPressed( true ); EndSelection(); - mnCurItemId = mpMenu->Execute( this, aRect, POPUPMENU_EXECUTE_DOWN ); + mnCurItemId = mpMenu->Execute( this, aRect, PopupMenuFlags::ExecuteDown ); SetPressed( false ); if ( mnCurItemId ) { |