summaryrefslogtreecommitdiff
path: root/svtools/inc/svtools/fixedhyper.hxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-01-29 14:24:43 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-01-29 14:24:43 +0000
commit1965af6a036e3c09f446af67b81921c4dfb168ea (patch)
tree2b7582d3a8b41abf1ea6de72f64a784fe033458a /svtools/inc/svtools/fixedhyper.hxx
parent9d98c3e6a8a230001e1ffa197c998731677a1749 (diff)
INTEGRATION: CWS fwk80_SRC680 (1.3.34); FILE MERGED
2008/01/11 15:12:37 pb 1.3.34.1: fix: #i83756# new base ::toolkit::FixedHyperlinkBase
Diffstat (limited to 'svtools/inc/svtools/fixedhyper.hxx')
-rw-r--r--svtools/inc/svtools/fixedhyper.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/svtools/inc/svtools/fixedhyper.hxx b/svtools/inc/svtools/fixedhyper.hxx
index 34767f4263b6..0b45b535eb74 100644
--- a/svtools/inc/svtools/fixedhyper.hxx
+++ b/svtools/inc/svtools/fixedhyper.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: fixedhyper.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: ihi $ $Date: 2007-11-22 15:24:08 $
+ * last change: $Author: rt $ $Date: 2008-01-29 15:24:43 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,9 +39,7 @@
#include "svtools/svtdllapi.h"
#endif
-#ifndef _SV_FIXED_HXX
-#include <vcl/fixed.hxx>
-#endif
+#include <toolkit/helper/fixedhyperbase.hxx>
//.........................................................................
namespace svt
@@ -51,7 +49,7 @@ namespace svt
//=====================================================================
//= FixedHyperlink
//=====================================================================
- class SVT_DLLPUBLIC FixedHyperlink : public FixedText
+ class SVT_DLLPUBLIC FixedHyperlink : public ::toolkit::FixedHyperlinkBase
{
private:
long m_nTextLen;
@@ -128,18 +126,20 @@ namespace svt
*/
inline const Link& GetClickHdl() const { return m_aClickHdl; }
+ // ::toolkit::FixedHyperbaseLink
+
/** sets the URL of the hyperlink and uses it as tooltip. */
- void SetURL( const String& rNewURL );
+ virtual void SetURL( const String& rNewURL );
/** returns the URL of the hyperlink.
@return
<member>m_sURL</member>
*/
- inline String GetURL() const { return m_sURL; }
+ virtual String GetURL() const;
/** sets new text and recalculates the text length. */
- void SetDescription( const String& rNewDescription );
+ virtual void SetDescription( const String& rNewDescription );
};
//.........................................................................