diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-09-07 10:13:32 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-09-07 10:13:43 +0300 |
commit | 3536eab550628ff4e07442066b7d1893519c03db (patch) | |
tree | bbad73ff5b0e91cadb2219e30fff4500cc013912 /sfx2 | |
parent | bda1f323fd1f86862a710085d2e6b419c4c85ab4 (diff) |
WaE: implicit conversion of literal of type 'int' to 'bool'
[loplugin:literaltoboolconversion].
Change-Id: Ic971c1e76d6b2f3bcdd8f575440f71212081256b
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/sidebar/SidebarController.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx index ac9853f859bb..7d68b37b2348 100644 --- a/sfx2/source/sidebar/SidebarController.cxx +++ b/sfx2/source/sidebar/SidebarController.cxx @@ -1010,7 +1010,7 @@ IMPL_LINK_TYPED(SidebarController, OnMenuItemSelected, Menu*, pMenu, bool) break; } - return 1; + return true; } void SidebarController::RequestCloseDeck() |