summaryrefslogtreecommitdiff
path: root/svl/inc/svl
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-02-21 10:26:56 -0800
committerJoseph Powers <jpowers27@cox.net>2011-02-21 10:26:56 -0800
commitb5863b83d212ae344cefe0aefdfd4caddaded02b (patch)
tree5f16177006f16e32c389c201aaafa7843b865737 /svl/inc/svl
parent2868cfdcbaa5d76d854bc55aa8c33621acdb8ad2 (diff)
Remove classes DdeServiceList & DdeTopicList
These don't appear to be used anywhere.
Diffstat (limited to 'svl/inc/svl')
-rw-r--r--svl/inc/svl/svdde.hxx41
1 files changed, 1 insertions, 40 deletions
diff --git a/svl/inc/svl/svdde.hxx b/svl/inc/svl/svdde.hxx
index 9ed45a146be8..3b642ad85f20 100644
--- a/svl/inc/svl/svdde.hxx
+++ b/svl/inc/svl/svdde.hxx
@@ -34,6 +34,7 @@
#include <tools/string.hxx>
#include <tools/list.hxx>
#include <tools/link.hxx>
+#include <vector>
class DdeString;
class DdeData;
@@ -68,12 +69,6 @@ typedef List DdeItems;
DECLARE_LIST( DdeTransactions, DdeTransaction* )
DECLARE_LIST( DdeFormats, long )
-
-#ifndef STRING_LIST
-#define STRING_LIST
-DECLARE_LIST( StringList, String * )
-#endif
-
// -----------
// - DdeData -
// -----------
@@ -107,40 +102,6 @@ public:
static ULONG GetExternalFormat( ULONG nFmt );
static ULONG GetInternalFormat( ULONG nFmt );
};
-// ------------------
-// - DdeServiceList -
-// ------------------
-
-class DdeServiceList
-{
- StringList aServices;
-
-public:
- DdeServiceList( const String* = NULL );
- ~DdeServiceList();
-
- StringList& GetServices() { return aServices; }
-
-private:
- DdeServiceList( const DdeServiceList& );
- const DdeServiceList& operator= ( const DdeServiceList& );
-};
-
-// ----------------
-// - DdeTopicList -
-// ----------------
-
-class DdeTopicList
-{
- StringList aTopics;
-
- DECL_LINK( Data, DdeData* );
-public:
- DdeTopicList( const String& );
- ~DdeTopicList();
-
- StringList& GetTopics() { return aTopics; }
-};
// ------------------
// - DdeTransaction -