summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-08-03 19:32:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-08-07 11:22:10 +0200
commit1cfd13586a8af00bb7055405a98ee7df21744e7f (patch)
tree823ea7cea866314477b2d703b2ad33a11d73ebbf /include
parent2f9d71b571fa8cb66b3af0b1b8e1ad6c032cb538 (diff)
move HyperLabel into vcl
could this be merged with FixedHyperlink? Change-Id: I00abe4bfa62a55c7b62ccd40e6c0294699317f26 Reviewed-on: https://gerrit.libreoffice.org/76897 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/hyperlabel.hxx (renamed from include/svtools/hyperlabel.hxx)10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/svtools/hyperlabel.hxx b/include/vcl/hyperlabel.hxx
index b4a6b22dbff1..864c9888f2b6 100644
--- a/include/svtools/hyperlabel.hxx
+++ b/include/vcl/hyperlabel.hxx
@@ -16,22 +16,20 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef INCLUDED_SVTOOLS_HYPERLABEL_HXX
-#define INCLUDED_SVTOOLS_HYPERLABEL_HXX
+#ifndef INCLUDED_VCL_HYPERLABEL_HXX
+#define INCLUDED_VCL_HYPERLABEL_HXX
#include <memory>
-
#include <vcl/fixed.hxx>
#define LABELBASEMAPHEIGHT 8
-
-namespace svt
+namespace vcl
{
class HyperLabelImpl;
- class HyperLabel final : public FixedText
+ class VCL_DLLPUBLIC HyperLabel final : public FixedText
{
std::unique_ptr<HyperLabelImpl> m_pImpl;
Link<HyperLabel*,void> maClickHdl;