summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-03-18 15:38:33 +0100
committerJulien Nabet <serval2412@yahoo.fr>2012-03-18 15:39:31 +0100
commit2b24cfe22d5d29645d2d926251c29514887fe3a9 (patch)
treedd8e24720f716f844c845c3e555e637e89d45d35 /sc
parentbae6e3f4fe355d0018c77e68d19bc64b52fe1ba6 (diff)
Fix Same expression on both sides of '=='
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/dpitemdata.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/dpitemdata.cxx b/sc/source/core/data/dpitemdata.cxx
index fe2c540d2abf..be4ef7e1f70a 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());
}