summaryrefslogtreecommitdiff
path: root/desktop/source/deployment
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-15 09:06:11 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-15 09:06:11 +0100
commitedc19f0400e7cac09a59291b8ed6c6c13f48468e (patch)
tree4d0ab93ec79baa2e32a3541c18d3a5099e77c571 /desktop/source/deployment
parent856b938afd1a7dc66cb079b1b70fd90d1634c177 (diff)
More loplugin:cstylecast: desktop
Change-Id: Ie03ac7c1a347389b804ff4d90982cdaf771e72dc
Diffstat (limited to 'desktop/source/deployment')
-rw-r--r--desktop/source/deployment/gui/dp_gui_dialog2.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.cxx b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
index 8d0c39d23a03..d1c16ea2007a 100644
--- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx
+++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
@@ -272,7 +272,7 @@ MENU_COMMAND ExtBoxWithBtns_Impl::ShowPopupMenu( const Point & rPos, const long
if ( !GetEntryData( nPos )->m_sLicenseText.isEmpty() )
aPopup->InsertItem( CMD_SHOW_LICENSE, DpResId( RID_STR_SHOW_LICENSE_CMD ) );
- return (MENU_COMMAND) aPopup->Execute( this, rPos );
+ return static_cast<MENU_COMMAND>(aPopup->Execute( this, rPos ));
}