Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
atk
Commits
381c3f2d
Commit
381c3f2d
authored
Sep 24, 2015
by
Alejandro Piñeiro
Browse files
atktablecell: use content of the pointer instead of pointer itself
Fixes
https://bugzilla.gnome.org/show_bug.cgi?id=755548
parent
eacc351e
Changes
1
Show whitespace changes
Inline
Side-by-side
atk/atktablecell.c
View file @
381c3f2d
...
...
@@ -272,5 +272,6 @@ atk_table_cell_real_get_row_column_span (AtkTableCell *cell,
atk_table_cell_get_position
(
cell
,
row
,
column
);
*
row_span
=
atk_table_cell_get_row_span
(
cell
);
*
column_span
=
atk_table_cell_get_column_span
(
cell
);
return
(
row
!=
0
&&
column
!=
0
&&
row_span
>
0
&&
column_span
>
0
);
return
(
*
row
!=
0
&&
*
column
!=
0
&&
*
row_span
>
0
&&
*
column_span
>
0
);
}
Write
Preview
Supports
Markdown
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