diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-04-18 09:15:23 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-04-23 15:18:34 +0200 |
commit | 86c86413ad3401989755e9e29327185544c95593 (patch) | |
tree | 1681de25a280629a0f97d194f126c74cab2fda82 | |
parent | 66b9d274ad0ed128795642dd7c50e41b671dfb40 (diff) |
catch exception like text_wrapper_get_caret_offset does
Change-Id: I7d681a5cd58af60005eefa9969ec975d5cfc5580
(cherry picked from commit 0d2a607a849e3f1b51092c7d96bc5529420cfab2)
Reviewed-on: https://gerrit.libreoffice.org/36636
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
(cherry picked from commit e8ee69d9557887c1736c50bdb11a875c8c126cc0)
-rw-r--r-- | vcl/unx/gtk/a11y/atkutil.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/vcl/unx/gtk/a11y/atkutil.cxx b/vcl/unx/gtk/a11y/atkutil.cxx index 9b5bbd0ca674..2d807769e1ab 100644 --- a/vcl/unx/gtk/a11y/atkutil.cxx +++ b/vcl/unx/gtk/a11y/atkutil.cxx @@ -90,7 +90,14 @@ atk_wrapper_focus_idle_handler (gpointer data) wrapper_obj->mpText.set(wrapper_obj->mpContext, css::uno::UNO_QUERY); if ( wrapper_obj->mpText.is() ) { - gint caretPos = wrapper_obj->mpText->getCaretPosition(); + gint caretPos = -1; + + try { + caretPos = wrapper_obj->mpText->getCaretPosition(); + } + catch(const uno::Exception&) { + g_warning( "Exception in getCaretPosition()" ); + } if ( caretPos != -1 ) { |