diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-02-24 23:38:27 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-02-24 23:51:41 +0200 |
commit | aaca25d67eb5ea252730cdcf555ecc04ce04a5e6 (patch) | |
tree | 559770109e27feab9244f050893b2cd13f7012fa /vcl | |
parent | 21edff2a37c9c22d200df2638e31f7ff3afe85b6 (diff) |
loplugin:implicitboolconversion
Change-Id: I5278a44d9d492d04618068afd1610358bb4b4d5c
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk/gtksalmenu.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/gtksalmenu.cxx b/vcl/unx/gtk/gtksalmenu.cxx index 772d080e4025..ad7ddd91f863 100644 --- a/vcl/unx/gtk/gtksalmenu.cxx +++ b/vcl/unx/gtk/gtksalmenu.cxx @@ -121,7 +121,7 @@ void RemoveDisabledItemsFromNativeMenu(GLOMenu* pMenu, GList** pOldCommandList, { gchar* pCommand = g_lo_menu_get_command_from_item_in_section(pMenu, nSection, nSectionItems); // remove disabled entries - bool bRemove = g_action_group_get_action_enabled(pActionGroup, pCommand) == false; + bool bRemove = g_action_group_get_action_enabled(pActionGroup, pCommand) == FALSE; if (!bRemove) { //also remove any empty submenus |