summaryrefslogtreecommitdiff
path: root/sfx2/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-07 11:57:21 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-02-07 15:30:15 +0100
commit91f54b1990153efd17ea5e33feffd1ec16b0387b (patch)
tree367bc38c21223a91f4089a408b5c8d0ae2254974 /sfx2/inc
parent30ab660b07ab9aa72624a728d9e1f963507def7c (diff)
weld URLBox ItemWindow
Change-Id: I7dad000404a188e2f5588b90d73ea9b1236bd301 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88183 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2/inc')
-rw-r--r--sfx2/inc/inettbc.hxx13
1 files changed, 8 insertions, 5 deletions
diff --git a/sfx2/inc/inettbc.hxx b/sfx2/inc/inettbc.hxx
index 10bbf353fde3..d9c8f52a31c4 100644
--- a/sfx2/inc/inettbc.hxx
+++ b/sfx2/inc/inettbc.hxx
@@ -23,18 +23,21 @@
#include <rtl/ustring.hxx>
#include <sfx2/tbxctrl.hxx>
-class ComboBox;
-class SvtURLBox;
+namespace weld { class ComboBox; };
+class URLBoxItemWindow;
+class URLBox;
class SfxURLToolBoxControl_Impl final : public SfxToolBoxControl
{
private:
+ bool m_bModified;
- SvtURLBox* GetURLBox() const;
+ URLBox* GetURLBox() const;
+ URLBoxItemWindow* GetURLBoxItemWindow() const;
void OpenURL( const OUString& rName ) const;
- DECL_LINK( OpenHdl, SvtURLBox*, void );
- DECL_LINK( SelectHdl, ComboBox&, void );
+ DECL_LINK(OpenHdl, weld::ComboBox&, bool);
+ DECL_LINK(SelectHdl, weld::ComboBox&, void);
struct ExecuteInfo
{