[Libreoffice-commits] core.git: sd/source

Tor Lillqvist tml at collabora.com
Thu Jan 23 04:23:07 PST 2014


 sd/source/ui/view/Outliner.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f313d63bc538f85e77323ea1847c67d6e5a6a34e
Author: Tor Lillqvist <tml at collabora.com>
Date:   Thu Jan 23 14:17:42 2014 +0200

    WaE: Fix bool sillyness
    
    Change-Id: I4aeb9204a6a5ab79954b3a8ccadf58362f0f43d2

diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx
index d68bb78..fd95253 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 ());
 }
 
 


More information about the Libreoffice-commits mailing list