summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/cellsh.hxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2013-11-21 15:23:09 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2013-11-28 20:40:36 +0100
commit47bc56725a37834888680986844b5d7630a6581d (patch)
treeab7891d0d074934859314a8a7105d7242291f87c /sc/source/ui/inc/cellsh.hxx
parent4cbc3d855529737bf8ce37a3c98dbbcc6b17f09e (diff)
Rework data streams to be more like file links (ScAreaLink).
By inheriting from sfx2::SvBaseLink and storing in sfx2::LinkManager we can have more data streams and see / remove them in Edit -> Links... dialog. Also rename to DataStream to avoid confusion. Change-Id: I9c3b89020324af7be082f9e6e1cd479aeb72fe81
Diffstat (limited to 'sc/source/ui/inc/cellsh.hxx')
-rw-r--r--sc/source/ui/inc/cellsh.hxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/sc/source/ui/inc/cellsh.hxx b/sc/source/ui/inc/cellsh.hxx
index d7be8ac993d7..b44eb9f25904 100644
--- a/sc/source/ui/inc/cellsh.hxx
+++ b/sc/source/ui/inc/cellsh.hxx
@@ -33,19 +33,16 @@ class SvxClipboardFmtItem;
class TransferableDataHelper;
class TransferableClipboardListener;
class AbstractScLinkedAreaDlg;
-class DataStreams;
struct CellShell_Impl
{
TransferableClipboardListener* m_pClipEvtLstnr;
AbstractScLinkedAreaDlg* m_pLinkedDlg;
- DataStreams* m_pDataStreams;
SfxRequest* m_pRequest;
CellShell_Impl() :
m_pClipEvtLstnr( NULL ),
m_pLinkedDlg( NULL ),
- m_pDataStreams( NULL ),
m_pRequest( NULL ) {}
};