summaryrefslogtreecommitdiff
path: root/sd/source/ui/view
diff options
context:
space:
mode:
authorArnaud Versini <arnaud.versini@gmail.com>2012-07-28 22:48:28 +0200
committerArnaud Versini <arnaud.versini@gmail.com>2012-07-29 15:01:55 +0200
commit04710a69122d383071520ae3d39664a5edb80520 (patch)
treedc45d9ad292f7cde48f6fdee27a77fe9d49070ec /sd/source/ui/view
parent4be123fed2b8d7e10bb98cd753e3b5cbc1d7293a (diff)
Replace usage of rtl/memory.h in sd with their equivalent from string.h
Change-Id: I79ab2e420783b06b3cba627795a108addb5a2e8b
Diffstat (limited to 'sd/source/ui/view')
-rw-r--r--sd/source/ui/view/ViewTabBar.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/view/ViewTabBar.cxx b/sd/source/ui/view/ViewTabBar.cxx
index 99521a69625f..be29215abda9 100644
--- a/sd/source/ui/view/ViewTabBar.cxx
+++ b/sd/source/ui/view/ViewTabBar.cxx
@@ -408,7 +408,7 @@ sal_Int64 SAL_CALL ViewTabBar::getSomething (const Sequence<sal_Int8>& rId)
sal_Int64 nResult = 0;
if (rId.getLength() == 16
- && rtl_compareMemory(getUnoTunnelId().getConstArray(), rId.getConstArray(), 16) == 0)
+ && memcmp(getUnoTunnelId().getConstArray(), rId.getConstArray(), 16) == 0)
{
nResult = reinterpret_cast<sal_Int64>(this);
}