diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-04-16 10:44:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-16 21:11:26 +0200 |
commit | 6703b806a7d33f27bdec53d5c897beac94308fd9 (patch) | |
tree | c6fe38d86f4d7d997607e57ae0fcaa4adf4477f2 /include | |
parent | b3846685e52f06f7c7a6c293e6ce6849ee795ac6 (diff) |
weld SwInsFootNoteDlg
Change-Id: I54849e2336d093e9044d4b32275387fa04e3bab9
Reviewed-on: https://gerrit.libreoffice.org/52963
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/weld.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index 52585c65b506..74ce9a7ab37d 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -409,6 +409,9 @@ public: virtual void set_position(int nCursorPos) = 0; virtual void set_editable(bool bEditable) = 0; + virtual vcl::Font get_font() = 0; + virtual void set_font(const vcl::Font& rFont) = 0; + void connect_changed(const Link<Entry&, void>& rLink) { m_aChangeHdl = rLink; } void connect_insert_text(const Link<OUString&, bool>& rLink) { m_aInsertTextHdl = rLink; } |