diff options
author | David Tardon <dtardon@redhat.com> | 2015-04-29 10:10:45 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-04-29 10:10:45 +0200 |
commit | 3a07ed8386875342638272330d854f7c2f3b7ce3 (patch) | |
tree | d1f642421c5b71bf75cbba904088659d43c07ab9 | |
parent | 53f7e721cef99602302220bd4f2d49b3e56be9d5 (diff) |
error C2666: 'operator ==' : 2 overloads have similar conversions
Change-Id: I51c71a82a312c2b059ba046ee2557117f365143b
-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 4392c1b1c979..682049cc341e 100644 --- a/sfx2/source/sidebar/SidebarController.cxx +++ b/sfx2/source/sidebar/SidebarController.cxx @@ -290,7 +290,7 @@ void SidebarController::BroadcastPropertyChange() void SidebarController::NotifyResize() { - if (mpTabBar == 0) + if (!mpTabBar) { OSL_ASSERT(mpTabBar!=nullptr); return; |