Include <gtk/gtk.h> in the more relevant header

This commit is contained in:
Pierre Pronchery 2022-05-17 21:39:53 +02:00
parent e7dfaff307
commit 7bf739ff5d
2 changed files with 3 additions and 3 deletions

View File

@ -18,8 +18,6 @@
#ifndef DESKTOP_PANEL_PANEL_H #ifndef DESKTOP_PANEL_PANEL_H
# define DESKTOP_PANEL_PANEL_H # define DESKTOP_PANEL_PANEL_H
# include <gtk/gtk.h>
/* Panel */ /* Panel */
/* types */ /* types */

View File

@ -18,6 +18,8 @@
#ifndef DESKTOP_PANEL_WINDOW_H #ifndef DESKTOP_PANEL_WINDOW_H
# define DESKTOP_PANEL_WINDOW_H # define DESKTOP_PANEL_WINDOW_H
# include <gtk/gtk.h>
/* PanelWindow */ /* PanelWindow */
/* types */ /* types */
@ -35,4 +37,4 @@ GtkIconSize panel_window_get_icon_size(PanelWindow * panel);
GtkOrientation panel_window_get_orientation(PanelWindow * panel); GtkOrientation panel_window_get_orientation(PanelWindow * panel);
PanelWindowType panel_window_get_type(PanelWindow * panel); PanelWindowType panel_window_get_type(PanelWindow * panel);
#endif /* !DESKTOP_PANEL_H */ #endif /* !DESKTOP_PANEL_WINDOW_H */