Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
gtk
Commits
786ade73
Commit
786ade73
authored
Jun 26, 2011
by
Matthias Clasen
Browse files
GtkLabelAccessible: avoid some pointless variables
parent
3f9d39ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
gtk/a11y/gtklabelaccessible.c
View file @
786ade73
...
...
@@ -391,13 +391,12 @@ static gint
gtk_label_accessible_get_n_selections
(
AtkText
*
text
)
{
GtkWidget
*
widget
;
gint
start
,
end
;
widget
=
gtk_accessible_get_widget
(
GTK_ACCESSIBLE
(
text
));
if
(
widget
==
NULL
)
return
0
;
if
(
gtk_label_get_selection_bounds
(
GTK_LABEL
(
widget
),
&
start
,
&
end
))
if
(
gtk_label_get_selection_bounds
(
GTK_LABEL
(
widget
),
NULL
,
NULL
))
return
1
;
return
0
;
...
...
@@ -416,11 +415,11 @@ gtk_label_accessible_get_selection (AtkText *text,
if
(
widget
==
NULL
)
return
NULL
;
label
=
GTK_LABEL
(
widget
);
if
(
selection_num
!=
0
)
return
NULL
;
label
=
GTK_LABEL
(
widget
);
if
(
gtk_label_get_selection_bounds
(
label
,
start_pos
,
end_pos
))
{
const
gchar
*
text
;
...
...
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