summaryrefslogtreecommitdiff
path: root/atk/atktable.c
diff options
context:
space:
mode:
authorPadraig O'Briain <padraigo@src.gnome.org>2001-11-17 11:56:03 +0000
committerPadraig O'Briain <padraigo@src.gnome.org>2001-11-17 11:56:03 +0000
commit40be3ed8f7999eb778319be2ba783850cd4ed901 (patch)
treee1f3897c2ecd8ca7968d2a80201c2b36a642ee7a /atk/atktable.c
parent72ba9184a0da324c8827cce908729f5f496e90b4 (diff)
downloadatk-40be3ed8f7999eb778319be2ba783850cd4ed901.tar.gz
Remove unused structure _AtkEditableTextIfaceClass
* atk/atkeditabletext.c: Remove unused structure _AtkEditableTextIfaceClass * atk/atkobject.[c|h] Remove signals model_changed and selection_changed * atk/selection.[c|h] Add signal selection_changed * atk/atktable.[c|h] Remove unused structure _AtkTableIfaceClass Add signal model_changed * atk/atktext.[c|h] Remove unused structure _AtkTextIfaceClass Add signal text_selection_changed * docs/tmpl/atkobject.sgml, docs/tmpl/atkselection.sgml, docs/tmpl/atktable.sgml, atk/tmpl/atktext.sgml: Documentation changes
Diffstat (limited to 'atk/atktable.c')
-rwxr-xr-xatk/atktable.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/atk/atktable.c b/atk/atktable.c
index ea94111..012ad53 100755
--- a/atk/atktable.c
+++ b/atk/atktable.c
@@ -27,16 +27,10 @@ enum {
COLUMN_DELETED,
ROW_REORDERED,
COLUMN_REORDERED,
+ MODEL_CHANGED,
LAST_SIGNAL
};
-struct _AtkTableIfaceClass
-{
- GObjectClass parent;
-};
-
-typedef struct _AtkTableIfaceClass AtkTableIfaceClass;
-
static void atk_table_base_init (gpointer *g_class);
static guint atk_table_signals[LAST_SIGNAL] = { 0 };
@@ -123,6 +117,15 @@ atk_table_base_init (gpointer *g_class)
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE,
0);
+ atk_table_signals[MODEL_CHANGED] =
+ g_signal_new ("model_changed",
+ ATK_TYPE_TABLE,
+ G_SIGNAL_RUN_LAST,
+ G_STRUCT_OFFSET (AtkTableIface, model_changed),
+ (GSignalAccumulator) NULL, NULL,
+ g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE, 0);
+
initialized = TRUE;
}
}