[Libreoffice-commits] .: sc/source

Julien Nabet serval2412 at kemper.freedesktop.org
Sun Mar 18 07:40:37 PDT 2012


 sc/source/core/data/dpitemdata.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2b24cfe22d5d29645d2d926251c29514887fe3a9
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sun Mar 18 15:38:33 2012 +0100

    Fix Same expression on both sides of '=='

diff --git a/sc/source/core/data/dpitemdata.cxx b/sc/source/core/data/dpitemdata.cxx
index fe2c540..be4ef7e 100644
--- a/sc/source/core/data/dpitemdata.cxx
+++ b/sc/source/core/data/dpitemdata.cxx
@@ -214,7 +214,7 @@ bool ScDPItemData::IsCaseInsEqual(const ScDPItemData& r) const
     }
 
     if (mbStringInterned && r.mbStringInterned)
-        return mpString == mpString;
+        return mpString == r.mpString;
 
     return ScGlobal::GetpTransliteration()->isEqual(GetString(), r.GetString());
 }


More information about the Libreoffice-commits mailing list