diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-04-02 12:42:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-04-02 17:11:56 +0200 |
commit | 08127638744c66dc5feab5808ef51ce54f9155e1 (patch) | |
tree | 0e48af0a5723bd17077db788819b65a7a18042a7 /include/vcl | |
parent | 33c1389a52be0e839584948be174ebed110522c5 (diff) |
weld XMLFilterSettingsDialog
Change-Id: Ia027fa0b5e99651988f2447bf29f6f5653dd0c48
Reviewed-on: https://gerrit.libreoffice.org/70139
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/waitobj.hxx | 3 | ||||
-rw-r--r-- | include/vcl/weld.hxx | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/vcl/waitobj.hxx b/include/vcl/waitobj.hxx index 858f49d4ae9b..15f4bdd29738 100644 --- a/include/vcl/waitobj.hxx +++ b/include/vcl/waitobj.hxx @@ -22,6 +22,7 @@ #include <vcl/dllapi.h> #include <vcl/window.hxx> +#include <vcl/weld.hxx> #include <stack> #include <vector> @@ -46,7 +47,7 @@ private: std::stack<std::vector<VclPtr<vcl::Window>>> m_aBusyStack; public: // lock all toplevels, except the argument - void incBusy(const vcl::Window* pIgnore); + void incBusy(const weld::Window* pIgnore); // unlock previous lock void decBusy(); bool isBusy() const { return !m_aBusyStack.empty(); } diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index f258b83c2cd5..83f0809ec906 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -740,6 +740,7 @@ public: virtual void clear() = 0; virtual int get_height_rows(int nRows) const = 0; + virtual void columns_autosize() = 0; virtual void set_column_fixed_widths(const std::vector<int>& rWidths) = 0; virtual int get_column_width(int nCol) const = 0; virtual OUString get_column_title(int nColumn) const = 0; |