diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-06-02 15:18:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-06-02 17:31:59 +0200 |
commit | 609d461794fe2048550d9619eda27b4d6bb8425e (patch) | |
tree | a51c92da6599417886aca4aefc797c7759769f96 /include/vcl | |
parent | b55ee51befef86a32a996b4dc55014c21b45ef5c (diff) |
Resolves: tdf#125270 clicking LinkButton should launch link
The gtk one does, but the gen one overwrite the default
handler instead of adding to it
Change-Id: I40c760821cb46283c00624797e97d601babd6200
Reviewed-on: https://gerrit.libreoffice.org/73339
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/fixedhyper.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/fixedhyper.hxx b/include/vcl/fixedhyper.hxx index da1e8ea84fbb..b46a37a2688d 100644 --- a/include/vcl/fixedhyper.hxx +++ b/include/vcl/fixedhyper.hxx @@ -94,6 +94,7 @@ class VCL_DLLPUBLIC FixedHyperlink : public FixedText m_aClickHdl is called if the text is clicked. */ void SetClickHdl( const Link<FixedHyperlink&,void>& rLink ) { m_aClickHdl = rLink; } + const Link<FixedHyperlink&,void>& GetClickHdl() const { return m_aClickHdl; } // ::FixedHyperbaseLink |