Fix some random include issues

Tue, 10 Oct 2023 00:17:51 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Tue, 10 Oct 2023 00:17:51 -0500
changeset 42347
d768e30362a4
parent 42346
45d2756d2a14
child 42348
991ae41441ab

Fix some random include issues

I found these when trying to determine what is still using gtkconv.h.

Testing Done:
Compiled

Reviewed at https://reviews.imfreedom.org/r/2644/

pidgin/gtkdialogs.c file | annotate | diff | comparison | revisions
pidgin/gtkrequest.h file | annotate | diff | comparison | revisions
pidgin/gtkutils.c file | annotate | diff | comparison | revisions
pidgin/gtkutils.h file | annotate | diff | comparison | revisions
--- a/pidgin/gtkdialogs.c	Mon Oct 09 23:28:16 2023 -0500
+++ b/pidgin/gtkdialogs.c	Tue Oct 10 00:17:51 2023 -0500
@@ -35,6 +35,7 @@
 #include <purple.h>
 
 #include "gtkblist.h"
+#include "gtkconv.h"
 #include "gtkdialogs.h"
 #include "gtkutils.h"
 #include "pidgincore.h"
--- a/pidgin/gtkrequest.h	Mon Oct 09 23:28:16 2023 -0500
+++ b/pidgin/gtkrequest.h	Tue Oct 10 00:17:51 2023 -0500
@@ -26,6 +26,8 @@
 #ifndef _PIDGINREQUEST_H_
 #define _PIDGINREQUEST_H_
 
+#include <gtk/gtk.h>
+
 #include <purple.h>
 
 G_BEGIN_DECLS
--- a/pidgin/gtkutils.c	Mon Oct 09 23:28:16 2023 -0500
+++ b/pidgin/gtkutils.c	Tue Oct 10 00:17:51 2023 -0500
@@ -28,6 +28,8 @@
 #include <glib/gi18n-lib.h>
 #include <glib/gstdio.h>
 
+#include <gdk/gdkkeysyms.h>
+
 #include <purple.h>
 
 #ifdef _WIN32
@@ -35,9 +37,6 @@
 #  include <shellapi.h>
 #endif /*_WIN32*/
 
-#include <gdk/gdkkeysyms.h>
-
-#include "gtkconv.h"
 #include "gtkdialogs.h"
 #include "gtkrequest.h"
 #include "gtkutils.h"
--- a/pidgin/gtkutils.h	Mon Oct 09 23:28:16 2023 -0500
+++ b/pidgin/gtkutils.h	Tue Oct 10 00:17:51 2023 -0500
@@ -26,7 +26,7 @@
 #ifndef _PIDGINUTILS_H_
 #define _PIDGINUTILS_H_
 
-#include "gtkconv.h"
+#include <gtk/gtk.h>
 
 #include <purple.h>
 

mercurial