diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-04-16 13:10:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-04-17 11:33:38 +0200 |
commit | c8780642a5e8dc0bdcc97940ee7d9cacdc64c928 (patch) | |
tree | 0256fe5f3886b17e9141e1bee5510254940addfd /include | |
parent | cdb14b4f079e56243c55029e4322f587fd6335b0 (diff) |
weld SwFieldInputDlg
and GetWindowState/SetWindowState are unused as it turns out
Change-Id: Id1c5dad151e1f3c94189b7bca1a7cf335613d3bd
Reviewed-on: https://gerrit.libreoffice.org/53001
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, 2 insertions, 1 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index 74ce9a7ab37d..058f7d3a6bb8 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -745,6 +745,7 @@ public: OUString get_title() const { return getConstDialog()->get_title(); } void set_help_id(const OString& rHelpId) { getDialog()->set_help_id(rHelpId); } OString get_help_id() const { return getConstDialog()->get_help_id(); } + void response(int nResponse) { getDialog()->response(nResponse); } virtual ~DialogController(); }; @@ -781,7 +782,7 @@ public: virtual ~MessageDialogController() override; void set_primary_text(const OUString& rText) { m_xDialog->set_primary_text(rText); } OUString get_primary_text() const { return m_xDialog->get_primary_text(); } - void set_default_response(int response) { m_xDialog->set_default_response(response); } + void set_default_response(int nResponse) { m_xDialog->set_default_response(nResponse); } }; } #endif |