diff options
Diffstat (limited to 'toolkit/source')
-rw-r--r-- | toolkit/source/awt/vclxmenu.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxmenu.cxx b/toolkit/source/awt/vclxmenu.cxx index bd76ce30d7bd..e6a93f27b62d 100644 --- a/toolkit/source/awt/vclxmenu.cxx +++ b/toolkit/source/awt/vclxmenu.cxx @@ -539,7 +539,7 @@ throw(css::uno::RuntimeException, std::exception) { nRet = static_cast<PopupMenu*>(mpMenu)->Execute( VCLUnoHelper::GetWindow( rxWindowPeer ), VCLRectangle( rPos ), - nFlags | POPUPMENU_NOMOUSEUPCLOSE ); + static_cast<PopupMenuFlags>(nFlags) | PopupMenuFlags::NoMouseUpClose ); } return nRet; } |