summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2013-08-19 16:28:05 +0200
committerAlejandro Piñeiro <apinheiro@igalia.com>2013-08-19 16:28:05 +0200
commit1a22f3935a29dc09b84341c297246575488d4e3a (patch)
treee39c5d945372bbc3e7e1d920ab54940f58dd68ef
parent3261a8a792f6688b5575512b8828eea262164713 (diff)
downloadatk-1a22f3935a29dc09b84341c297246575488d4e3a.tar.gz
atktext: remove 'text-update' signal
That signal was created with wrong parameters, it is not used at all, and it is not clear if it is needed. So removing until someone brings the topic again, with a valid reasoning. Right now the only one is being more compatible with IA2. See also: https://mail.gnome.org/archives/gnome-accessibility-devel/2013-August/msg00013.html
-rwxr-xr-xatk/atktext.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/atk/atktext.c b/atk/atktext.c
index 5bea401..8e6b9c3 100755
--- a/atk/atktext.c
+++ b/atk/atktext.c
@@ -59,7 +59,6 @@ enum {
TEXT_ATTRIBUTES_CHANGED,
TEXT_INSERT,
TEXT_REMOVE,
- TEXT_UPDATE,
LAST_SIGNAL
};
@@ -255,28 +254,6 @@ atk_text_base_init (AtkTextIface *class)
3, G_TYPE_INT, G_TYPE_INT, G_TYPE_STRING);
/**
- * AtkText::text-update:
- * @atktext: the object which received the signal.
- * @arg1: unknown
- * @arg2: unknown
- * @arg3: unknown
- * @arg4: unknown
- *
- * The "text-update" signal is emitted when a new text is
- * updated.
- */
- atk_text_signals[TEXT_UPDATE] =
- g_signal_new ("text_update",
- ATK_TYPE_TEXT,
- G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
- 0,
- (GSignalAccumulator) NULL, NULL,
- atk_marshal_VOID__INT_INT_INT_STRING,
- G_TYPE_NONE,
- 4, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT, G_TYPE_STRING);
-
-
- /**
* AtkText::text-caret-moved:
* @atktext: the object which received the signal.
* @arg1: The new position of the text caret.