qulogic/gplugin

properly namespace gplugin_gtk_store_get_column_types
feature/docs-review
2020-02-17, Gary Kramlich
0c0d2848611b
Parents 5de323cc1f52
Children be9aa9727078
properly namespace gplugin_gtk_store_get_column_types
--- a/gplugin-gtk/gplugin-gtk-store.c Mon Feb 17 04:21:33 2020 -0600
+++ b/gplugin-gtk/gplugin-gtk-store.c Mon Feb 17 20:59:34 2020 -0600
@@ -200,7 +200,7 @@
static void
gplugin_gtk_store_init(GPluginGtkStore *store) {
- GType *types = (GType *)gplugin_gtk_get_store_column_types();
+ GType *types = (GType *)gplugin_gtk_store_get_column_types();
gtk_list_store_set_column_types(GTK_LIST_STORE(store),
GPLUGIN_GTK_STORE_N_COLUMNS,
@@ -233,7 +233,7 @@
}
/**
- * gplugin_gtk_get_store_column_types:
+ * gplugin_gtk_store_get_column_types:
*
* Returns the columns that #GPluginGtkStore's will use.
*
@@ -241,6 +241,6 @@
* will use.
*/
const GType *
-gplugin_gtk_get_store_column_types(void) {
+gplugin_gtk_store_get_column_types(void) {
return column_types;
}
--- a/gplugin-gtk/gplugin-gtk-store.h Mon Feb 17 04:21:33 2020 -0600
+++ b/gplugin-gtk/gplugin-gtk-store.h Mon Feb 17 20:59:34 2020 -0600
@@ -43,7 +43,7 @@
GPluginGtkStore *gplugin_gtk_store_new(void);
-const GType *gplugin_gtk_get_store_column_types(void);
+const GType *gplugin_gtk_store_get_column_types(void);
G_END_DECLS