summaryrefslogtreecommitdiff
path: root/sc/source/core/data/dpobject.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-01-14 22:31:30 -0500
committerKohei Yoshida <kyoshida@novell.com>2011-01-14 22:31:30 -0500
commit1cb096dfbc62f05809f99e86eb4c223e911a444a (patch)
tree12f6ec8ecc788b2871856b3454f7648f42750ddd /sc/source/core/data/dpobject.cxx
parent59857f3108e63e7399c4b4b8d035e9f3c576b91f (diff)
ScDPObject no longer has to be a child class of ScDataObject.
Diffstat (limited to 'sc/source/core/data/dpobject.cxx')
-rw-r--r--sc/source/core/data/dpobject.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/sc/source/core/data/dpobject.cxx b/sc/source/core/data/dpobject.cxx
index fa8fb4a52..86804285e 100644
--- a/sc/source/core/data/dpobject.cxx
+++ b/sc/source/core/data/dpobject.cxx
@@ -177,7 +177,6 @@ ScDPObject::ScDPObject( ScDocument* pD ) :
}
ScDPObject::ScDPObject(const ScDPObject& r) :
- ScDataObject(),
pDoc( r.pDoc ),
pSaveData( NULL ),
aTableName( r.aTableName ),
@@ -219,11 +218,6 @@ ScDPObject::~ScDPObject()
InvalidateSource();
}
-ScDataObject* ScDPObject::Clone() const
-{
- return new ScDPObject(*this);
-}
-
void ScDPObject::SetAlive(BOOL bSet)
{
bAlive = bSet;