diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-24 12:33:05 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-24 12:36:26 +0200 |
commit | 8039c64822c8de24ea452bff7917193f7cc90669 (patch) | |
tree | a737f86d94d0c11990ffeae7f0661ce9a07eb484 /sd/source/ui/dlg | |
parent | 60467763e32833232394e05642338f60346c0d53 (diff) |
loplugin:simplifybool
Change-Id: Ie214d859cb47c64cb6fab6f451a53ef188400026
Diffstat (limited to 'sd/source/ui/dlg')
-rw-r--r-- | sd/source/ui/dlg/LayerTabBar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/LayerTabBar.cxx b/sd/source/ui/dlg/LayerTabBar.cxx index 09cb270a24d0..cfc97fd3a543 100644 --- a/sd/source/ui/dlg/LayerTabBar.cxx +++ b/sd/source/ui/dlg/LayerTabBar.cxx @@ -185,7 +185,7 @@ bool LayerTabBar::StartRenaming() } } - return bOK ? true : false; + return bOK; } TabBarAllowRenamingReturnCode LayerTabBar::AllowRenaming() |