summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-04-02 13:33:47 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-04-03 10:20:05 -0400
commitf3da88221852086e5d44e7540cf76448bf2bf99c (patch)
tree5a0a13cc585c984207178a8d3dd92647416c6a27 /editeng
parent333cb00a6399bca9999fa0248a64922757da4a7d (diff)
Meaningless typedefs for pointer types.
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/editeng/editdoc.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/editeng/source/editeng/editdoc.hxx b/editeng/source/editeng/editdoc.hxx
index c28ed07ac70e..041ce0b44f40 100644
--- a/editeng/source/editeng/editdoc.hxx
+++ b/editeng/source/editeng/editdoc.hxx
@@ -139,7 +139,6 @@ public:
// ----------------------------------------------------------------------
// class SvxColorList
// ----------------------------------------------------------------------
-typedef ContentNode* ContentNodePtr;
typedef ::std::vector< SvxColorItem* > DummyColorList;
class SvxColorList
@@ -160,8 +159,7 @@ public:
// ----------------------------------------------------------------------
// class ItemList
// ----------------------------------------------------------------------
-typedef const SfxPoolItem* ConstPoolItemPtr;
-typedef ::std::vector< ConstPoolItemPtr > DummyItemList;
+typedef ::std::vector<const SfxPoolItem*> DummyItemList;
class ItemList
{