diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-01-23 14:17:42 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-01-23 14:22:33 +0200 |
commit | f313d63bc538f85e77323ea1847c67d6e5a6a34e (patch) | |
tree | b6203cc139b6b9e5c156e099e0f873893e741a57 /sd | |
parent | 1c3f994c515e4f227e0b052d18899a897c042013 (diff) |
WaE: Fix bool sillyness
Change-Id: I4aeb9204a6a5ab79954b3a8ccadf58362f0f43d2
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/Outliner.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx index d68bb7800ae0..fd952534f0d9 100644 --- a/sd/source/ui/view/Outliner.cxx +++ b/sd/source/ui/view/Outliner.cxx @@ -1438,7 +1438,7 @@ bool Outliner::HasNoPreviousMatch (void) // Detect whether the cursor stands at the beginning // resp. at the end of the text. - return pOutlinerView->GetSelection().IsEqual(GetSearchStartPosition ()) == sal_True; + return pOutlinerView->GetSelection().IsEqual(GetSearchStartPosition ()); } |