[Libreoffice-commits] core.git: vcl/unx
Samuel Thibault (via logerrit)
logerrit at kemper.freedesktop.org
Wed Aug 21 19:19:13 UTC 2019
vcl/unx/gtk/a11y/atkcomponent.cxx | 4 ++++
vcl/unx/gtk/a11y/atkimage.cxx | 5 ++---
vcl/unx/gtk/a11y/atktext.cxx | 3 ++-
3 files changed, 8 insertions(+), 4 deletions(-)
New commits:
commit 8a086a97299c921a0b386f762ff706b6d85e678a
Author: Samuel Thibault <samuel.thibault at ens-lyon.org>
AuthorDate: Mon Aug 19 18:50:23 2019 +0200
Commit: Thorsten Behrens <Thorsten.Behrens at CIB.de>
CommitDate: Wed Aug 21 21:17:58 2019 +0200
atk: Make sure returned values are initialized
-1 is the now-document value to be used in this case, see
https://gitlab.gnome.org/GNOME/atk/merge_requests/22
Change-Id: I7e8f1c64cf0dfb337f2c1ee026ca68700c893e78
Reviewed-on: https://gerrit.libreoffice.org/77750
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens <Thorsten.Behrens at CIB.de>
diff --git a/vcl/unx/gtk/a11y/atkcomponent.cxx b/vcl/unx/gtk/a11y/atkcomponent.cxx
index e904b12ac610..da5a48eca1f2 100644
--- a/vcl/unx/gtk/a11y/atkcomponent.cxx
+++ b/vcl/unx/gtk/a11y/atkcomponent.cxx
@@ -170,6 +170,8 @@ component_wrapper_get_position (AtkComponent *component,
return;
}
+ *x = *y = -1;
+
try
{
css::uno::Reference<css::accessibility::XAccessibleComponent> pComponent
@@ -208,6 +210,8 @@ component_wrapper_get_size (AtkComponent *component,
return;
}
+ *width = *height = -1;
+
try
{
css::uno::Reference<css::accessibility::XAccessibleComponent> pComponent
diff --git a/vcl/unx/gtk/a11y/atkimage.cxx b/vcl/unx/gtk/a11y/atkimage.cxx
index 1c9bc2c640f9..baf45d45babe 100644
--- a/vcl/unx/gtk/a11y/atkimage.cxx
+++ b/vcl/unx/gtk/a11y/atkimage.cxx
@@ -77,7 +77,7 @@ image_get_image_position( AtkImage *image,
gint *y,
AtkCoordType coord_type )
{
- *x = *y = 0;
+ *x = *y = -1;
if( ATK_IS_COMPONENT( image ) )
{
SAL_WNODEPRECATED_DECLARATIONS_PUSH
@@ -93,8 +93,7 @@ image_get_image_size( AtkImage *image,
gint *width,
gint *height )
{
- *width = 0;
- *height = 0;
+ *width = *height = -1;
try {
css::uno::Reference<css::accessibility::XAccessibleImage> pImage
= getImage( image );
diff --git a/vcl/unx/gtk/a11y/atktext.cxx b/vcl/unx/gtk/a11y/atktext.cxx
index 532b55013ddd..1406ceea5544 100644
--- a/vcl/unx/gtk/a11y/atktext.cxx
+++ b/vcl/unx/gtk/a11y/atktext.cxx
@@ -621,12 +621,13 @@ text_wrapper_get_character_extents( AtkText *text,
gint *height,
AtkCoordType coords )
{
+ *x = *y = *width = *height = -1;
+
try {
css::uno::Reference<css::accessibility::XAccessibleText> pText
= getText( text );
if( pText.is() )
{
- *x = *y = *width = *height = 0;
awt::Rectangle aRect = pText->getCharacterBounds( offset );
gint origin_x = 0;
More information about the Libreoffice-commits
mailing list