diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-03-21 11:01:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-03-21 16:08:29 +0100 |
commit | 8d55371997dd1e98a602b397fa86f20481119047 (patch) | |
tree | f10127e68c4ebcec309f4cfb9342c2b63395e322 /include | |
parent | 417d26291cd13c861e8f6262d0fb6afa026f015c (diff) |
add optional helpid to add_button
Change-Id: I9606d0788c78397feb0840463991c5498e759b5a
Reviewed-on: https://gerrit.libreoffice.org/51703
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 1d0e3f390076..58b0ddd80284 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -135,7 +135,8 @@ private: public: virtual int run() = 0; virtual void response(int response) = 0; - virtual void add_button(const OUString& rText, int response) = 0; + virtual void add_button(const OUString& rText, int response, const OString& rHelpId = OString()) + = 0; virtual void set_default_response(int response) = 0; }; |