summaryrefslogtreecommitdiff
path: root/atspi/atspi-table-cell.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2022-12-06 20:44:48 -0600
committerFederico Mena Quintero <federico@gnome.org>2022-12-06 20:50:13 -0600
commitb10fcf21b1ef49dd3d6297ac657434ece3b23578 (patch)
treed560f8449f3ae75fea343887dcb6d5f4df7b434c /atspi/atspi-table-cell.c
parentbf4d71a38b970699f63ce7b701e9bf4c9d31f717 (diff)
downloadat-spi2-core-b10fcf21b1ef49dd3d6297ac657434ece3b23578.tar.gz
Reformat all the *.[ch] files with clang-format
I ran this on each directory with C files: clang-format -i *.[ch] "-i" is the in-place option. I also adjusted the order of #includes for some files which failed to build after that: Clang-format reorders blocks of #include directives alphabetically, but they can be grouped and separated by blank lines. If there is a blank line between blocks, like #include "zork.h" #include "bar.h" #include "foo.h" then it will not put zork.h after the other two. The last two header files will be sorted alphabetically. We can adjust the formatting of chunks of code by hand with comments like these: /* clang-format off */ this code { is, formatted, by, hand; } /* clang-format on */ See https://clang.llvm.org/docs/ClangFormat.html for the general manual and https://clang.llvm.org/docs/ClangFormatStyleOptions.html for the style options and the comments described above.
Diffstat (limited to 'atspi/atspi-table-cell.c')
-rw-r--r--atspi/atspi-table-cell.c71
1 files changed, 35 insertions, 36 deletions
diff --git a/atspi/atspi-table-cell.c b/atspi/atspi-table-cell.c
index a33e0a89..4884f161 100644
--- a/atspi/atspi-table-cell.c
+++ b/atspi/atspi-table-cell.c
@@ -22,8 +22,8 @@
* Boston, MA 02110-1301, USA.
*/
-#include <stdlib.h> /* for malloc */
#include "atspi-private.h"
+#include <stdlib.h> /* for malloc */
static GPtrArray *
get_object_array_and_unref (DBusMessage *reply)
@@ -35,20 +35,20 @@ get_object_array_and_unref (DBusMessage *reply)
return NULL;
if (strcmp (dbus_message_get_signature (reply), "a(so)") != 0)
- {
- dbus_message_unref (reply);
- return NULL;
- }
+ {
+ dbus_message_unref (reply);
+ return NULL;
+ }
array = g_ptr_array_new ();
dbus_message_iter_init (reply, &iter);
dbus_message_iter_recurse (&iter, &iter_array);
while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
- {
- AtspiAccessible *accessible = _atspi_dbus_consume_accessible (&iter_array);
- g_ptr_array_add (array, accessible);
- }
+ {
+ AtspiAccessible *accessible = _atspi_dbus_consume_accessible (&iter_array);
+ g_ptr_array_add (array, accessible);
+ }
dbus_message_unref (reply);
return array;
}
@@ -73,7 +73,7 @@ atspi_table_cell_get_column_span (AtspiTableCell *obj, GError **error)
_atspi_dbus_get_property (obj, atspi_interface_table_cell, "ColumnSpan",
error, "i", &retval);
-
+
return retval;
}
@@ -85,7 +85,7 @@ atspi_table_cell_get_column_span (AtspiTableCell *obj, GError **error)
*
* Returns: (element-type AtspiAccessible) (transfer full): a GPtrArray of
* AtspiAccessibles representing the column header cells.
- */
+ */
GPtrArray *
atspi_table_cell_get_column_header_cells (AtspiTableCell *obj, GError **error)
{
@@ -94,7 +94,7 @@ atspi_table_cell_get_column_header_cells (AtspiTableCell *obj, GError **error)
g_return_val_if_fail (obj != NULL, NULL);
reply = _atspi_dbus_call_partial (obj, atspi_interface_table_cell, "GetColumnHeaderCells", error, "");
-
+
return get_object_array_and_unref (reply);
}
@@ -118,7 +118,7 @@ atspi_table_cell_get_row_span (AtspiTableCell *obj, GError **error)
_atspi_dbus_get_property (obj, atspi_interface_table_cell, "RowSpan",
error, "i", &retval);
-
+
return retval;
}
@@ -139,7 +139,7 @@ atspi_table_cell_get_row_header_cells (AtspiTableCell *obj, GError **error)
g_return_val_if_fail (obj != NULL, NULL);
reply = _atspi_dbus_call_partial (obj, atspi_interface_table_cell, "GetRowHeaderCells", error, "");
-
+
return get_object_array_and_unref (reply);
}
@@ -169,7 +169,7 @@ atspi_table_cell_get_position (AtspiTableCell *obj,
reply = _atspi_dbus_call_partial (obj, "org.freedesktop.DBus.Properties",
"Get", error, "ss",
atspi_interface_table_cell, "Position");
-
+
if (!reply)
return -1;
@@ -183,10 +183,10 @@ atspi_table_cell_get_position (AtspiTableCell *obj,
iter_sig = dbus_message_iter_get_signature (&iter_variant);
/* TODO: Also report error here */
if (strcmp (iter_sig, "(ii)") != 0)
- {
- dbus_free (iter_sig);
- return FALSE;
- }
+ {
+ dbus_free (iter_sig);
+ return FALSE;
+ }
dbus_free (iter_sig);
dbus_message_iter_recurse (&iter_variant, &iter_struct);
@@ -215,13 +215,13 @@ atspi_table_cell_get_position (AtspiTableCell *obj,
*/
void
atspi_table_cell_get_row_column_span (AtspiTableCell *obj,
- gint *row,
- gint *column,
- gint *row_span,
- gint *column_span,
- GError **error)
+ gint *row,
+ gint *column,
+ gint *row_span,
+ gint *column_span,
+ GError **error)
{
- dbus_int32_t d_row = 0, d_column = 0, d_row_span = 0, d_column_span = 0;
+ dbus_int32_t d_row = 0, d_column = 0, d_row_span = 0, d_column_span = 0;
if (row)
*row = -1;
@@ -265,7 +265,7 @@ atspi_table_cell_get_table (AtspiTableCell *obj, GError **error)
_atspi_dbus_get_property (obj, atspi_interface_table_cell, "Table",
error, "(so)", &retval);
-
+
return retval;
}
@@ -279,16 +279,15 @@ atspi_table_cell_get_type (void)
{
static GType type = 0;
- if (!type) {
- static const GTypeInfo tinfo =
+ if (!type)
{
- sizeof (AtspiTableCell),
- (GBaseInitFunc) atspi_table_cell_base_init,
- (GBaseFinalizeFunc) NULL,
- };
-
- type = g_type_register_static (G_TYPE_INTERFACE, "AtspiTableCell", &tinfo, 0);
-
- }
+ static const GTypeInfo tinfo = {
+ sizeof (AtspiTableCell),
+ (GBaseInitFunc) atspi_table_cell_base_init,
+ (GBaseFinalizeFunc) NULL,
+ };
+
+ type = g_type_register_static (G_TYPE_INTERFACE, "AtspiTableCell", &tinfo, 0);
+ }
return type;
}