summaryrefslogtreecommitdiff
path: root/svx/source/xoutdev
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-04-16 16:54:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-04-17 09:09:33 +0200
commit9a831a6c19a30869782cfeb17f1c649a4ce4d9d9 (patch)
tree690a29bf99b90c18b2b7f8ce7829a9b932a2f0fc /svx/source/xoutdev
parentb3f094c2573de12bf3d386f19b924b536cb89af0 (diff)
remove no longer necessary operator new/delete overrides
and use "using" statements for the places where the overrides were resolving ambiguities Change-Id: Icb1d1a41f19e00f28a19947aa2c40bd5778fff94 Reviewed-on: https://gerrit.libreoffice.org/52993 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/xoutdev')
-rw-r--r--svx/source/xoutdev/xtable.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/svx/source/xoutdev/xtable.cxx b/svx/source/xoutdev/xtable.cxx
index 746ece2fa2dc..b633303b30e9 100644
--- a/svx/source/xoutdev/xtable.cxx
+++ b/svx/source/xoutdev/xtable.cxx
@@ -374,18 +374,6 @@ XPropertyList::CreatePropertyListFromURL( XPropertyListType t,
return pList;
}
-// catch people being silly with ref counting ...
-
-void* XPropertyList::operator new (size_t nCount)
-{
- return rtl_allocateMemory( nCount );
-}
-
-void XPropertyList::operator delete(void *pPtr)
-{
- return rtl_freeMemory( pPtr );
-}
-
static struct {
XPropertyListType t;
const char *pExt;