diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-10 17:04:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-10 17:11:52 +0100 |
commit | 3c232d2f86f6944a3d86df0d1f710491cee1b064 (patch) | |
tree | 7158f63917c0407ebbed2b87970072877d7bedc4 /include/svl | |
parent | e2d4ca69ab8dd90c2eaec0cede1e5aed4a092611 (diff) |
Use proper bool operations
Change-Id: I5b4af4fbd9d286393d8553b9346ad7e74f690a85
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/zformat.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/zformat.hxx b/include/svl/zformat.hxx index 43a473018abb..10ec8c639fb6 100644 --- a/include/svl/zformat.hxx +++ b/include/svl/zformat.hxx @@ -107,7 +107,7 @@ public: bSet = true; } bool IsSet() const { return bSet; } - void SetDate( bool bDateP ) { bDate = (bDateP != 0); } + void SetDate( bool bDateP ) { bDate = bDateP; } }; class CharClass; |