From 0a2b871ccdc5a76f793982bae45cb251c71e4b94 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 19 Dec 2019 13:41:16 +0000 Subject: weld PageFooterPanel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ice9e7c5ab9c1085021ebb3561cfb2bd0a6727066 Reviewed-on: https://gerrit.libreoffice.org/85526 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- include/svx/samecontentlistbox.hxx | 4 +++- include/svx/spacinglistbox.hxx | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/svx/samecontentlistbox.hxx b/include/svx/samecontentlistbox.hxx index 842063125d2e..73946e2a3f35 100644 --- a/include/svx/samecontentlistbox.hxx +++ b/include/svx/samecontentlistbox.hxx @@ -22,14 +22,16 @@ #include #include +#include /// Custom Widget ListBox to hold entries for SameContent setting of Header/Footer class SVX_DLLPUBLIC SameContentListBox final : public ListBox { public: SameContentListBox( vcl::Window* pParent ); + static void Fill(weld::ComboBox& rComboBox); Size GetOptimalSize() const override; }; #endif -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/svx/spacinglistbox.hxx b/include/svx/spacinglistbox.hxx index 91e7fa18d777..df8b8c043e19 100644 --- a/include/svx/spacinglistbox.hxx +++ b/include/svx/spacinglistbox.hxx @@ -22,6 +22,7 @@ #include #include +#include enum class SpacingType { SPACING_INCH, MARGINS_INCH, SPACING_CM, MARGINS_CM }; @@ -31,6 +32,7 @@ class SVX_DLLPUBLIC SpacingListBox final : public ListBox public: SpacingListBox( vcl::Window* pParent ); void Init(SpacingType eType); + static void Fill(SpacingType eType, weld::ComboBox&); Size GetOptimalSize() const override; }; -- cgit