summaryrefslogtreecommitdiff
path: root/svtools/inc
diff options
context:
space:
mode:
authorHennes Rohling <hro@openoffice.org>2001-07-03 15:35:06 +0000
committerHennes Rohling <hro@openoffice.org>2001-07-03 15:35:06 +0000
commitb9e9e1efee01fca726de8b24cbf3e959f8d54495 (patch)
treeb083c17536336e63bcb209e35dc7e1896116086b /svtools/inc
parente525ad4a3afd43af2877a4f1da37d6a4aeaa28f6 (diff)
#89181# TF_SVDATA: Removed obsolete methods
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/urlbmk.hxx13
1 files changed, 10 insertions, 3 deletions
diff --git a/svtools/inc/urlbmk.hxx b/svtools/inc/urlbmk.hxx
index b01a662e5728..b2193ba4a842 100644
--- a/svtools/inc/urlbmk.hxx
+++ b/svtools/inc/urlbmk.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: urlbmk.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:58:54 $
+ * last change: $Author: hro $ $Date: 2001-07-03 16:35:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,9 +67,13 @@
#include <tools/string.hxx>
#endif
+#ifndef TF_SVDATA
+
class SvData;
class SotDataObject;
+#endif
+
//=========================================================================
class INetBookmark
@@ -88,8 +92,10 @@ class INetBookmark
String aDescr;
protected:
+#ifndef TF_SVDATA
String CopyExchange() const;
void PasteExchange( String aString );
+#endif
void SetURL( const String& rS ) { aUrl = rS; }
void SetDescription( const String& rS ) { aDescr = rS; }
@@ -104,6 +110,7 @@ public:
const String& GetURL() const { return aUrl; }
const String& GetDescription() const { return aDescr; }
+#ifndef TF_SVDATA
static BOOL ClipboardHasFormat();
static BOOL DragServerHasFormat( USHORT nItem );
@@ -125,7 +132,7 @@ public:
{ return INetBookmark::Copy( rObj ); }
BOOL _Paste( SotDataObject& rObj, ULONG nFormat )
{ return INetBookmark::Paste( rObj, nFormat ); }
-
+#endif
};