summaryrefslogtreecommitdiff
path: root/basic/source/runtime/ddectrl.hxx
diff options
context:
space:
mode:
authorRafael Dominguez <venccsralph@gmail.com>2011-04-27 11:27:37 -0430
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-05-06 10:26:00 +0200
commit0105e425bac83783ce5631b51d2d635a438881b6 (patch)
tree2cf1466f409cd1dbdae0ef5538a5676ce5e34591 /basic/source/runtime/ddectrl.hxx
parent747d3154e34ad0267674516f03d67265e0e923c0 (diff)
Remove usage of List for DdeConnection in SbiDdeControl.
Diffstat (limited to 'basic/source/runtime/ddectrl.hxx')
-rw-r--r--basic/source/runtime/ddectrl.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/basic/source/runtime/ddectrl.hxx b/basic/source/runtime/ddectrl.hxx
index 2f12e8128791..e10109b64177 100644
--- a/basic/source/runtime/ddectrl.hxx
+++ b/basic/source/runtime/ddectrl.hxx
@@ -34,7 +34,6 @@
#include <tools/string.hxx>
class DdeConnection;
-class DdeConnections;
class DdeData;
class SbiDdeControl
@@ -43,7 +42,7 @@ private:
DECL_LINK( Data, DdeData* );
SbError GetLastErr( DdeConnection* );
sal_Int16 GetFreeChannel();
- DdeConnections* pConvList;
+ std::vector<DdeConnection*> aConvList;
String aData;
public: