summaryrefslogtreecommitdiff
path: root/svx/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-08 11:47:38 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-08 13:04:46 +0100
commit135a208ba217d9b8ff13f47eab552c8ddfaec01a (patch)
tree2af1b16ea926e68e41b44b351ad444538976bf65 /svx/inc
parent71b8b49170a949ed51ef0dfbb3daf9f0257ff3f7 (diff)
callcatcher: object is never constructed
Diffstat (limited to 'svx/inc')
-rw-r--r--svx/inc/svx/svdmodel.hxx1
-rw-r--r--svx/inc/svx/xattr.hxx1
-rw-r--r--svx/inc/svx/xit.hxx1
-rw-r--r--svx/inc/svx/xlineit.hxx1
-rw-r--r--svx/inc/svx/xlndsit.hxx2
-rw-r--r--svx/inc/svx/xtable.hxx29
6 files changed, 1 insertions, 34 deletions
diff --git a/svx/inc/svx/svdmodel.hxx b/svx/inc/svx/svdmodel.hxx
index f1f0e2b2cc71..e58212b403d1 100644
--- a/svx/inc/svx/svdmodel.hxx
+++ b/svx/inc/svx/svdmodel.hxx
@@ -82,7 +82,6 @@ class XBitmapList;
class XBitmapTable;
class XColorTable;
class XDashList;
-class XDashTable;
class XGradientList;
class XGradientTable;
class XHatchList;
diff --git a/svx/inc/svx/xattr.hxx b/svx/inc/svx/xattr.hxx
index 81e0251802ba..a2118dc2733b 100644
--- a/svx/inc/svx/xattr.hxx
+++ b/svx/inc/svx/xattr.hxx
@@ -29,7 +29,6 @@
#define _XATTR_HXX
class XColorTable;
-class XDashTable;
class XLineEndTable;
class XHatchTable;
class XBitmapTable;
diff --git a/svx/inc/svx/xit.hxx b/svx/inc/svx/xit.hxx
index 2458a04ab54c..1611736d0b3e 100644
--- a/svx/inc/svx/xit.hxx
+++ b/svx/inc/svx/xit.hxx
@@ -36,7 +36,6 @@
/************************************************************************/
class XColorTable;
-class XDashTable;
class XLineEndTable;
class XHatchTable;
class XBitmapTable;
diff --git a/svx/inc/svx/xlineit.hxx b/svx/inc/svx/xlineit.hxx
index e5a465e9d587..6617207d1a6d 100644
--- a/svx/inc/svx/xlineit.hxx
+++ b/svx/inc/svx/xlineit.hxx
@@ -37,7 +37,6 @@
#include <svl/eitem.hxx>
class XDash;
-class XDashTable;
class SvStream;
#include <svx/xdash.hxx>
diff --git a/svx/inc/svx/xlndsit.hxx b/svx/inc/svx/xlndsit.hxx
index d3a6b17ea1db..4f61e371cd4b 100644
--- a/svx/inc/svx/xlndsit.hxx
+++ b/svx/inc/svx/xlndsit.hxx
@@ -68,7 +68,7 @@ public:
virtual bool HasMetrics() const;
virtual bool ScaleMetrics(long nMul, long nDiv);
- const XDash& GetDashValue(const XDashTable* pTable = 0) const; // GetValue -> GetDashValue
+ const XDash& GetDashValue() const;
void SetDashValue(const XDash& rNew) { aDash = rNew; Detach(); } // SetValue -> SetDashValue
static sal_Bool CompareValueFunc( const NameOrIndex* p1, const NameOrIndex* p2 );
diff --git a/svx/inc/svx/xtable.hxx b/svx/inc/svx/xtable.hxx
index 8224b616d682..5ed7a78487a6 100644
--- a/svx/inc/svx/xtable.hxx
+++ b/svx/inc/svx/xtable.hxx
@@ -388,35 +388,6 @@ public:
virtual Bitmap* CreateBitmapForUI(long nIndex, sal_Bool bDelete = sal_True);
};
-// --------------------
-// class XDashTable
-// --------------------
-
-class XDashTable : public XPropertyTable
-{
-public:
- explicit XDashTable(
- const String& rPath,
- XOutdevItemPool* pXPool = NULL,
- sal_uInt16 nInitSize = 16,
- sal_uInt16 nReSize = 16
- );
- virtual ~XDashTable();
-
- using XPropertyTable::Replace;
- XDashEntry* Replace(long nIndex, XDashEntry* pEntry );
- using XPropertyTable::Remove;
- XDashEntry* Remove(long nIndex);
- using XPropertyTable::Get;
- XDashEntry* GetDash(long nIndex) const;
-
- virtual sal_Bool Load();
- virtual sal_Bool Save();
- virtual sal_Bool Create();
- virtual sal_Bool CreateBitmapsForUI();
- virtual Bitmap* CreateBitmapForUI( long nIndex, sal_Bool bDelete = sal_True );
-};
-
// -------------------
// class XDashList
// -------------------