summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Murphy <hello@itsjamie.dev>2023-01-12 15:30:43 -0800
committerJamie Murphy <hello@itsjamie.dev>2023-02-12 07:14:41 +0000
commited87518cd3bdff41ed233c6878dca3c5fd807729 (patch)
tree9cec8a019a84d6635e3507dacecd5b36325c22a6
parentcfc3f862c6a0a77fe08b2a17fd3a86cad11ec8f1 (diff)
downloadgnome-todo-ed87518cd3bdff41ed233c6878dca3c5fd807729.tar.gz
gtd-utils: Remove private headers
There's no public-facing API anymore, so no need for private code
-rw-r--r--src/core/gtd-utils-private.h2
-rw-r--r--src/core/gtd-utils.h6
-rw-r--r--src/main.c2
3 files changed, 6 insertions, 4 deletions
diff --git a/src/core/gtd-utils-private.h b/src/core/gtd-utils-private.h
index f668307c..c7fbe2f1 100644
--- a/src/core/gtd-utils-private.h
+++ b/src/core/gtd-utils-private.h
@@ -24,6 +24,6 @@
G_BEGIN_DECLS
-void gtd_ensure_types (void);
+
G_END_DECLS
diff --git a/src/core/gtd-utils.h b/src/core/gtd-utils.h
index bc03170f..22e5ec5b 100644
--- a/src/core/gtd-utils.h
+++ b/src/core/gtd-utils.h
@@ -29,7 +29,9 @@ gchar* gtd_normalize_casefold_and_unaccent (const gchar
gint gtd_collate_compare_strings (const gchar *string_a,
const gchar *string_b);
-GdkPaintable* gtd_create_circular_paintable (GdkRGBA *color,
- gint size);
+GdkPaintable* gtd_create_circular_paintable (GdkRGBA *color,
+ gint size);
+
+void gtd_ensure_types (void);
G_END_DECLS
diff --git a/src/main.c b/src/main.c
index 85298997..cd55d8fa 100644
--- a/src/main.c
+++ b/src/main.c
@@ -19,7 +19,7 @@
*/
#include "gtd-application.h"
-#include "gtd-utils-private.h"
+#include "gtd-utils.h"
#include <config.h>
#include <glib/gi18n.h>