Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Dorota Czaplejewicz
gtk
Commits
de6580b3
Commit
de6580b3
authored
Jan 20, 2011
by
Cosimo Cecchi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gail: fix the build
parent
3f0d330a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/other/gail/gailwidget.c
modules/other/gail/gailwidget.c
+4
-4
No files found.
modules/other/gail/gailwidget.c
View file @
de6580b3
...
...
@@ -102,7 +102,7 @@ static void gail_widget_focus_event (AtkObject *obj,
static
void
gail_widget_real_initialize
(
AtkObject
*
obj
,
gpointer
data
);
static
char
*
gail_widget_get_attributes
(
AtkObject
*
obj
);
static
AtkAttributeSet
*
gail_widget_get_attributes
(
AtkObject
*
obj
);
static
GtkWidget
*
gail_widget_find_viewport
(
GtkWidget
*
widget
);
static
gboolean
gail_widget_on_screen
(
GtkWidget
*
widget
);
static
gboolean
gail_widget_all_parents_visible
(
GtkWidget
*
widget
);
...
...
@@ -1120,7 +1120,7 @@ static gboolean gail_widget_all_parents_visible (GtkWidget *widget)
return
result
;
}
static
char
*
gail_widget_get_attributes
(
AtkObject
*
obj
)
static
AtkAttributeSet
*
gail_widget_get_attributes
(
AtkObject
*
obj
)
{
AtkAttributeSet
*
attributes
;
AtkAttribute
*
toolkit
=
g_malloc
(
sizeof
(
AtkAttribute
));
...
...
@@ -1128,7 +1128,7 @@ static char *gail_widget_get_attributes(AtkObject *obj)
toolkit
->
name
=
g_strdup
(
"toolkit"
);
toolkit
->
value
=
g_strdup
(
"gail"
);
attributes
=
g_slist_append
(
NULL
,
toolkit
);
attributes
=
g_slist_append
(
NULL
,
toolkit
);
return
attributes
;
return
attributes
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment