diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:16:53 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:25:40 +0200 |
commit | 2ee796ba49a13c38c1eb1e98c5e8b78d1ce18b64 (patch) | |
tree | dc1c62db36a2824a0e90cd77d4382edaab216ba2 /extensions/source/propctrlr/propcontroller.cxx | |
parent | 4bff11d579dce8e2bb4f35f9218003bb28cf5a01 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: Ief96e7038461f514d8fe5bf16b7181b122715775
Diffstat (limited to 'extensions/source/propctrlr/propcontroller.cxx')
-rw-r--r-- | extensions/source/propctrlr/propcontroller.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/propcontroller.cxx b/extensions/source/propctrlr/propcontroller.cxx index 7a478149a8cc..434cfefb8f56 100644 --- a/extensions/source/propctrlr/propcontroller.cxx +++ b/extensions/source/propctrlr/propcontroller.cxx @@ -472,11 +472,11 @@ namespace pcr { // this means a "suspend" is to be "revoked" suspendPropertyHandlers_nothrow( false ); // we ourself cannot revoke our suspend - return sal_False; + return false; } if ( !suspendAll_nothrow() ) - return sal_False; + return false; // commit the editor's content if ( haveView() ) @@ -486,7 +486,7 @@ namespace pcr stopContainerWindowListening(); // outtahere - return sal_True; + return true; } |