blob: f2389bd047f1eb181ac3dd6df910d614d32c66eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- widgets/misc/e-multi-config-dialog.c.orig Tue Nov 23 15:53:34 2004
+++ widgets/misc/e-multi-config-dialog.c Tue Nov 23 15:54:02 2004
@@ -396,6 +396,7 @@
{
EMultiConfigDialogPrivate *priv;
AtkObject *a11y;
+ AtkObject *a11yPage;
gint page_no;
g_return_if_fail (E_IS_MULTI_CONFIG_DIALOG (dialog));
@@ -418,7 +419,7 @@
NULL);
a11y = gtk_widget_get_accessible (GTK_WIDGET(priv->notebook));
- AtkObject *a11yPage = atk_object_ref_accessible_child (a11y, page_no);
+ a11yPage = atk_object_ref_accessible_child (a11y, page_no);
if (a11yPage != NULL) {
if (atk_object_get_role (a11yPage) == ATK_ROLE_PAGE_TAB)
atk_object_set_name (a11yPage, title);
|