loplugin:implicitboolconversion
Change-Id: I9edc0d2e478f83e39e93e70e6c05c77b0125aad0
This commit is contained in:
@@ -848,7 +848,7 @@ bool GtkSalMenu::NativeSetItemCommand( unsigned nSection,
|
||||
if ( aCurrentCommand == nullptr || g_strcmp0( aCurrentCommand, aCommand ) != 0 )
|
||||
{
|
||||
bool bOldHasSubmenu = g_lo_menu_get_submenu_from_item_in_section(pMenu, nSection, nItemPos) != nullptr;
|
||||
bSubMenuAddedOrRemoved = bOldHasSubmenu != bIsSubmenu;
|
||||
bSubMenuAddedOrRemoved = static_cast<gboolean>(bOldHasSubmenu) != bIsSubmenu;
|
||||
if (bSubMenuAddedOrRemoved)
|
||||
{
|
||||
//tdf#98636 its not good enough to unset the "submenu-action" attribute to change something
|
||||
|
Reference in New Issue
Block a user