diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:20:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:27:26 +0200 |
commit | a34ded25d61c61c5c25792a1bace4970a754afc6 (patch) | |
tree | ed4b6314f650aa23b5446c78eb6556dbd8ace2e1 /svtools/source/uno/genericunodialog.cxx | |
parent | 58a6d1f042d75d53a55077f0c8ef24feebf3473b (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I706d2b85ba6a49ee34f9fe88a960943e87079902
Diffstat (limited to 'svtools/source/uno/genericunodialog.cxx')
-rw-r--r-- | svtools/source/uno/genericunodialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/uno/genericunodialog.cxx b/svtools/source/uno/genericunodialog.cxx index ad8d7ea903f0..9735b5c4f492 100644 --- a/svtools/source/uno/genericunodialog.cxx +++ b/svtools/source/uno/genericunodialog.cxx @@ -131,9 +131,9 @@ sal_Bool OGenericUnoDialog::convertFastPropertyValue( Any& rConvertedValue, Any& { rConvertedValue <<= xNew; rOldValue <<= m_xParent; - return sal_True; + return true; } - return sal_False; + return false; } } return OPropertyContainer::convertFastPropertyValue(rConvertedValue, rOldValue, nHandle, rValue); |