summaryrefslogtreecommitdiff
path: root/src/gui/widgets/browserbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/browserbox.h')
-rw-r--r--src/gui/widgets/browserbox.h24
1 files changed, 2 insertions, 22 deletions
diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h
index 80ec9cf75..7eff1f1ea 100644
--- a/src/gui/widgets/browserbox.h
+++ b/src/gui/widgets/browserbox.h
@@ -28,6 +28,8 @@
#include "enums/simpletypes/opaque.h"
+#include "gui/browserlink.h"
+
#include "gui/widgets/linepart.h"
#include "gui/widgets/widget.h"
@@ -35,28 +37,6 @@
class LinkHandler;
-struct BrowserLink final
-{
- BrowserLink() :
- x1(0),
- x2(0),
- y1(0),
- y2(0),
- link(),
- caption()
- {
- }
-
- A_DEFAULT_COPY(BrowserLink)
-
- int x1;
- int x2;
- int y1;
- int y2;
- std::string link;
- std::string caption;
-};
-
/**
* A simple browser box able to handle links and forward events to the
* parent conteiner.