summaryrefslogtreecommitdiff
path: root/atspi/atspi-table.h
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.h
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.h')
-rw-r--r--atspi/atspi-table.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/atspi/atspi-table.h b/atspi/atspi-table.h
index 942f2f6f..bbe5e83b 100644
--- a/atspi/atspi-table.h
+++ b/atspi/atspi-table.h
@@ -5,7 +5,7 @@
* Copyright 2002 Ximian, Inc.
* 2002 Sun Microsystems Inc.
* Copyright 2010, 2011 Novell, Inc.
- *
+ *
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -34,10 +34,10 @@
G_BEGIN_DECLS
-#define ATSPI_TYPE_TABLE (atspi_table_get_type ())
-#define ATSPI_IS_TABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_TABLE)
-#define ATSPI_TABLE(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_TABLE, AtspiTable)
-#define ATSPI_TABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_TABLE, AtspiTable))
+#define ATSPI_TYPE_TABLE (atspi_table_get_type ())
+#define ATSPI_IS_TABLE(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATSPI_TYPE_TABLE)
+#define ATSPI_TABLE(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), ATSPI_TYPE_TABLE, AtspiTable)
+#define ATSPI_TABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), ATSPI_TYPE_TABLE, AtspiTable))
GType atspi_table_get_type ();
@@ -46,15 +46,15 @@ struct _AtspiTable
GTypeInterface parent;
};
-AtspiAccessible * atspi_table_get_caption (AtspiTable *obj, GError **error);
+AtspiAccessible *atspi_table_get_caption (AtspiTable *obj, GError **error);
-AtspiAccessible * atspi_table_get_summary (AtspiTable *obj, GError **error);
+AtspiAccessible *atspi_table_get_summary (AtspiTable *obj, GError **error);
gint atspi_table_get_n_rows (AtspiTable *obj, GError **error);
gint atspi_table_get_n_columns (AtspiTable *obj, GError **error);
-AtspiAccessible * atspi_table_get_accessible_at (AtspiTable *obj, gint row, gint column, GError **error);
+AtspiAccessible *atspi_table_get_accessible_at (AtspiTable *obj, gint row, gint column, GError **error);
gint atspi_table_get_index_at (AtspiTable *obj, gint row, gint column, GError **error);
@@ -62,9 +62,9 @@ gint atspi_table_get_row_at_index (AtspiTable *obj, gint index, GError **error);
gint atspi_table_get_column_at_index (AtspiTable *obj, gint index, GError **error);
-gchar * atspi_table_get_row_description (AtspiTable *obj, gint row, GError **error);
+gchar *atspi_table_get_row_description (AtspiTable *obj, gint row, GError **error);
-gchar * atspi_table_get_column_description (AtspiTable *obj, gint column, GError **error);
+gchar *atspi_table_get_column_description (AtspiTable *obj, gint column, GError **error);
gint
atspi_table_get_row_extent_at (AtspiTable *obj, gint row, gint column, GError **error);
@@ -72,15 +72,15 @@ atspi_table_get_row_extent_at (AtspiTable *obj, gint row, gint column, GError **
gint
atspi_table_get_column_extent_at (AtspiTable *obj, gint row, gint column, GError **error);
-AtspiAccessible * atspi_table_get_row_header (AtspiTable *obj, gint row, GError **error);
+AtspiAccessible *atspi_table_get_row_header (AtspiTable *obj, gint row, GError **error);
-AtspiAccessible * atspi_table_get_column_header (AtspiTable *obj, gint column, GError **error);
+AtspiAccessible *atspi_table_get_column_header (AtspiTable *obj, gint column, GError **error);
gint atspi_table_get_n_selected_rows (AtspiTable *obj, GError **error);
GArray *atspi_table_get_selected_rows (AtspiTable *obj, GError **error);
-GArray * atspi_table_get_selected_columns (AtspiTable *obj, GError **error);
+GArray *atspi_table_get_selected_columns (AtspiTable *obj, GError **error);
gint atspi_table_get_n_selected_columns (AtspiTable *obj, GError **error);
@@ -102,4 +102,4 @@ gboolean atspi_table_is_selected (AtspiTable *obj, gint row, gint column, GError
G_END_DECLS
-#endif /* _ATSPI_TABLE_H_ */
+#endif /* _ATSPI_TABLE_H_ */