summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-03-01 20:21:12 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-03-02 17:08:16 +0100
commitd8a3741e0e3aa2fed6e3e16fae8eac095356c8bf (patch)
treeb3fc743a22d8adc46773914d83acf45f463cb4f2 /include
parentdab9a2b60a63530638905bd26162946a9494f93b (diff)
weld split cells dialog
Change-Id: I726c6d84807ab3efba509058eed554fe4c0ffced Reviewed-on: https://gerrit.libreoffice.org/50636 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/svxdlg.hxx2
-rw-r--r--include/vcl/weld.hxx6
2 files changed, 7 insertions, 1 deletions
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx
index 92e116ff4c8a..14f73131c0e9 100644
--- a/include/svx/svxdlg.hxx
+++ b/include/svx/svxdlg.hxx
@@ -470,7 +470,7 @@ public:
virtual VclPtr<SfxAbstractTabDialog> CreateSvxFormatCellsDialog( const SfxItemSet* pAttr, SdrModel* pModel, const SdrObject* pObj )=0;
- virtual VclPtr<SvxAbstractSplittTableDialog> CreateSvxSplittTableDialog( vcl::Window* pParent, bool bIsTableVertical, long nMaxVertical )=0;
+ virtual VclPtr<SvxAbstractSplittTableDialog> CreateSvxSplittTableDialog(weld::Window* pParent, bool bIsTableVertical, long nMaxVertical) = 0;
virtual VclPtr<SvxAbstractNewTableDialog> CreateSvxNewTableDialog() = 0;
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index eaecaf11bd5b..e77936765787 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -47,6 +47,12 @@ public:
virtual OString get_buildable_name() const = 0;
virtual void set_help_id(const OString& rName) = 0;
virtual OString get_help_id() const = 0;
+
+ virtual void set_grid_left_attach(int nAttach) = 0;
+ virtual int get_grid_left_attach() const = 0;
+ virtual void set_grid_top_attach(int nAttach) = 0;
+ virtual int get_grid_top_attach() const = 0;
+
virtual Container* weld_parent() const = 0;
virtual ~Widget() {}