summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorDaniel Rentz <dr@openoffice.org>2001-09-21 05:12:59 +0000
committerDaniel Rentz <dr@openoffice.org>2001-09-21 05:12:59 +0000
commit1cc304250e4db102e92dc64065cc772b9396b57e (patch)
treed5f4e60af24fdab14fc268807dd0ef87db57d62c /sc/inc
parentc67d669477ceffb17db8dceee6e92d8ccf53fefa (diff)
#91273# removed redundant function
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/document.hxx13
1 files changed, 5 insertions, 8 deletions
diff --git a/sc/inc/document.hxx b/sc/inc/document.hxx
index 14900a04d7a6..c1484c9fc3fb 100644
--- a/sc/inc/document.hxx
+++ b/sc/inc/document.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: document.hxx,v $
*
- * $Revision: 1.46 $
+ * $Revision: 1.47 $
*
- * last change: $Author: er $ $Date: 2001-08-10 18:01:16 $
+ * last change: $Author: dr $ $Date: 2001-09-21 06:12:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -658,21 +658,18 @@ public:
void CopyDdeLinks( ScDocument* pDestDoc ) const;
void DisconnectDdeLinks();
- // Fuer Excel-Import:
- void CreateDdeLink( const String& rAppl, const String& rTopic, const String& rItem );
-
// Fuer StarOne Api:
USHORT GetDdeLinkCount() const;
BOOL GetDdeLinkData( USHORT nPos, String& rAppl, String& rTopic, String& rItem ) const;
BOOL UpdateDdeLink( const String& rAppl, const String& rTopic, const String& rItem );
- // For XML Export/Import:
- // nPos is index of DDE links only
+ // For XCL/XML Export (nPos is index of DDE links only):
BOOL GetDdeLinkMode(USHORT nPos, USHORT& nMode);
BOOL GetDdeLinkResultDimension( USHORT nPos , USHORT& nCol, USHORT& nRow, ScMatrix*& pMatrix);
BOOL GetDdeLinkResult(const ScMatrix* pMatrix, USHORT nCol, USHORT nRow, String& rStrValue, double& rDoubValue, BOOL& bIsString);
- void CreateDdeLink(const String& rAppl, const String& rTopic, const String& rItem, const BYTE nMode );
+ // For XCL/XML Import (nPos is index of DDE links only):
+ void CreateDdeLink(const String& rAppl, const String& rTopic, const String& rItem, const BYTE nMode = SC_DDE_DEFAULT );
BOOL FindDdeLink(const String& rAppl, const String& rTopic, const String& rItem, const BYTE nMode, USHORT& nPos );
BOOL CreateDdeLinkResultDimension(USHORT nPos, USHORT nCols, USHORT nRows, ScMatrix*& pMatrix);
void SetDdeLinkResult(ScMatrix* pMatrix, const USHORT nCol, const USHORT nRow, const String& rStrValue, const double& rDoubValue, BOOL bString, BOOL bEmpty);