Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Williams2019-02-11 20:08:57 +0000
committerEric Williams2019-02-11 20:09:27 +0000
commitcd0330316ccbd351a11ba60d73c5c3cbba9b2b99 (patch)
tree8c5384f75932675d51c7f42ce867d883caffaab2
parent42bf7febc003b13ab578fc601862a0b5d36d2b78 (diff)
downloadeclipse.platform.swt-cd0330316ccbd351a11ba60d73c5c3cbba9b2b99.tar.gz
eclipse.platform.swt-cd0330316ccbd351a11ba60d73c5c3cbba9b2b99.tar.xz
eclipse.platform.swt-cd0330316ccbd351a11ba60d73c5c3cbba9b2b99.zip
Bug 544198: atk_text_get_text() seems broken
Remove bad return statement from swt_fixed_accessible_text_get_text(). Change-Id: Iaa9997a14b26c95013169b5f53e1e0307655eb35 Signed-off-by: Eric Williams <ericwill@redhat.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.c b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.c
index 638feba5f1..e942805f66 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.c
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/os_custom.c
@@ -2039,7 +2039,6 @@ static gchar *swt_fixed_accessible_text_get_selection (AtkText *text, gint selec
}
static gchar *swt_fixed_accessible_text_get_text (AtkText *text, gint start_offset, gint end_offset) {
- return NULL;
SwtFixedAccessible *fixed = SWT_FIXED_ACCESSIBLE (text);
SwtFixedAccessiblePrivate *private = fixed->priv;
jintLong returned_value = 0;

Back to the top