mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
gail: Include files directly
Instead of including <gail/gailfoo.h>, include "gailfoo.h" Private headers should be included like this (to make it esily visible that the headers are private) and we want to move this directory to a different name, so hardcoding the directory name is counterproductive to that.
This commit is contained in:
parent
842b1decc8
commit
ee606d1684
@ -1,43 +1,43 @@
|
||||
#include <gail/gailadjustment.h>
|
||||
#include <gail/gailarrow.h>
|
||||
#include <gail/gailbooleancell.h>
|
||||
#include <gail/gailbox.h>
|
||||
#include <gail/gailbutton.h>
|
||||
#include <gail/gailcalendar.h>
|
||||
#include <gail/gailcell.h>
|
||||
#include <gail/gailcheckmenuitem.h>
|
||||
#include <gail/gailcombobox.h>
|
||||
#include <gail/gailcontainer.h>
|
||||
#include <gail/gailcontainercell.h>
|
||||
#include <gail/gailentry.h>
|
||||
#include <gail/gailexpander.h>
|
||||
#include <gail/gailframe.h>
|
||||
#include <gail/gailimage.h>
|
||||
#include <gail/gailimagecell.h>
|
||||
#include <gail/gaillabel.h>
|
||||
#include <gail/gaillinkbutton.h>
|
||||
#include <gail/gailmenu.h>
|
||||
#include <gail/gailmenushell.h>
|
||||
#include <gail/gailmenuitem.h>
|
||||
#include <gail/gailnotebook.h>
|
||||
#include <gail/gailpaned.h>
|
||||
#include <gail/gailprogressbar.h>
|
||||
#include <gail/gailradiobutton.h>
|
||||
#include <gail/gailradiomenuitem.h>
|
||||
#include <gail/gailrenderercell.h>
|
||||
#include <gail/gailrange.h>
|
||||
#include <gail/gailscale.h>
|
||||
#include <gail/gailscalebutton.h>
|
||||
#include <gail/gailscrollbar.h>
|
||||
#include <gail/gailscrolledwindow.h>
|
||||
#include <gail/gailseparator.h>
|
||||
#include <gail/gailspinbutton.h>
|
||||
#include <gail/gailstatusbar.h>
|
||||
#include <gail/gailtextcell.h>
|
||||
#include <gail/gailtextview.h>
|
||||
#include <gail/gailtogglebutton.h>
|
||||
#include <gail/gailtoplevel.h>
|
||||
#include <gail/gailtreeview.h>
|
||||
#include <gail/gailutil.h>
|
||||
#include <gail/gailwidget.h>
|
||||
#include <gail/gailwindow.h>
|
||||
#include "gailadjustment.h"
|
||||
#include "gailarrow.h"
|
||||
#include "gailbooleancell.h"
|
||||
#include "gailbox.h"
|
||||
#include "gailbutton.h"
|
||||
#include "gailcalendar.h"
|
||||
#include "gailcell.h"
|
||||
#include "gailcheckmenuitem.h"
|
||||
#include "gailcombobox.h"
|
||||
#include "gailcontainer.h"
|
||||
#include "gailcontainercell.h"
|
||||
#include "gailentry.h"
|
||||
#include "gailexpander.h"
|
||||
#include "gailframe.h"
|
||||
#include "gailimage.h"
|
||||
#include "gailimagecell.h"
|
||||
#include "gaillabel.h"
|
||||
#include "gaillinkbutton.h"
|
||||
#include "gailmenu.h"
|
||||
#include "gailmenushell.h"
|
||||
#include "gailmenuitem.h"
|
||||
#include "gailnotebook.h"
|
||||
#include "gailpaned.h"
|
||||
#include "gailprogressbar.h"
|
||||
#include "gailradiobutton.h"
|
||||
#include "gailradiomenuitem.h"
|
||||
#include "gailrenderercell.h"
|
||||
#include "gailrange.h"
|
||||
#include "gailscale.h"
|
||||
#include "gailscalebutton.h"
|
||||
#include "gailscrollbar.h"
|
||||
#include "gailscrolledwindow.h"
|
||||
#include "gailseparator.h"
|
||||
#include "gailspinbutton.h"
|
||||
#include "gailstatusbar.h"
|
||||
#include "gailtextcell.h"
|
||||
#include "gailtextview.h"
|
||||
#include "gailtogglebutton.h"
|
||||
#include "gailtoplevel.h"
|
||||
#include "gailtreeview.h"
|
||||
#include "gailutil.h"
|
||||
#include "gailwidget.h"
|
||||
#include "gailwindow.h"
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_ARROW_H__
|
||||
#define __GAIL_ARROW_H__
|
||||
|
||||
#include <gail/gailwidget.h>
|
||||
#include "gailwidget.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define __GAIL_BOOLEAN_CELL_H__
|
||||
|
||||
#include <atk/atk.h>
|
||||
#include <gail/gailrenderercell.h>
|
||||
#include "gailrenderercell.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_BOX_H__
|
||||
#define __GAIL_BOX_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_BUTTON_H__
|
||||
#define __GAIL_BUTTON_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_CALENDAR_H__
|
||||
#define __GAIL_CALENDAR_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define __GAIL_CELL_PARENT_H__
|
||||
|
||||
#include <atk/atk.h>
|
||||
#include <gail/gailcell.h>
|
||||
#include "gailcell.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_CHECK_MENU_ITEM_H__
|
||||
#define __GAIL_CHECK_MENU_ITEM_H__
|
||||
|
||||
#include <gail/gailmenuitem.h>
|
||||
#include "gailmenuitem.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_CHECK_SUB_MENU_ITEM_H__
|
||||
#define __GAIL_CHECK_SUB_MENU_ITEM_H__
|
||||
|
||||
#include <gail/gailsubmenuitem.h>
|
||||
#include "gailsubmenuitem.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_COMBO_BOX_H__
|
||||
#define __GAIL_COMBO_BOX_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_CONTAINER_H__
|
||||
#define __GAIL_CONTAINER_H__
|
||||
|
||||
#include <gail/gailwidget.h>
|
||||
#include "gailwidget.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define __GAIL_CONTAINER_CELL_H__
|
||||
|
||||
#include <atk/atk.h>
|
||||
#include <gail/gailcell.h>
|
||||
#include "gailcell.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_ENTRY_H__
|
||||
#define __GAIL_ENTRY_H__
|
||||
|
||||
#include <gail/gailwidget.h>
|
||||
#include "gailwidget.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_EXPANDER_H__
|
||||
#define __GAIL_EXPANDER_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_FRAME_H__
|
||||
#define __GAIL_FRAME_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_IMAGE_H__
|
||||
#define __GAIL_IMAGE_H__
|
||||
|
||||
#include <gail/gailwidget.h>
|
||||
#include "gailwidget.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define __GAIL_IMAGE_CELL_H__
|
||||
|
||||
#include <atk/atk.h>
|
||||
#include <gail/gailrenderercell.h>
|
||||
#include "gailrenderercell.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_LABEL_H__
|
||||
#define __GAIL_LABEL_H__
|
||||
|
||||
#include <gail/gailwidget.h>
|
||||
#include "gailwidget.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_LINK_BUTTON_H__
|
||||
#define __GAIL_LINK_BUTTON_H__
|
||||
|
||||
#include <gail/gailbutton.h>
|
||||
#include "gailbutton.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_MENU_H__
|
||||
#define __GAIL_MENU_H__
|
||||
|
||||
#include <gail/gailmenushell.h>
|
||||
#include "gailmenushell.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_MENU_ITEM_H__
|
||||
#define __GAIL_MENU_ITEM_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_MENU_SHELL_H__
|
||||
#define __GAIL_MENU_SHELL_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_NOTEBOOK_H__
|
||||
#define __GAIL_NOTEBOOK_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_NOTEBOOK_PAGE_H__
|
||||
#define __GAIL_NOTEBOOK_PAGE_H__
|
||||
|
||||
#include <gail/gailnotebook.h>
|
||||
#include "gailnotebook.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_PANED_H__
|
||||
#define __GAIL_PANED_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_PROGRESS_BAR_H__
|
||||
#define __GAIL_PROGRESS_BAR_H__
|
||||
|
||||
#include <gail/gailwidget.h>
|
||||
#include "gailwidget.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_RADIO_BUTTON_H__
|
||||
#define __GAIL_RADIO_BUTTON_H__
|
||||
|
||||
#include <gail/gailtogglebutton.h>
|
||||
#include "gailtogglebutton.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_RADIO_MENU_ITEM_H__
|
||||
#define __GAIL_RADIO_MENU_ITEM_H__
|
||||
|
||||
#include <gail/gailcheckmenuitem.h>
|
||||
#include "gailcheckmenuitem.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_RADIO_SUB_MENU_ITEM_H__
|
||||
#define __GAIL_RADIO_SUB_MENU_ITEM_H__
|
||||
|
||||
#include <gail/gailchecksubmenuitem.h>
|
||||
#include "gailchecksubmenuitem.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_RANGE_H__
|
||||
#define __GAIL_RANGE_H__
|
||||
|
||||
#include <gail/gailwidget.h>
|
||||
#include "gailwidget.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define __GAIL_RENDERER_CELL_H__
|
||||
|
||||
#include <atk/atk.h>
|
||||
#include <gail/gailcell.h>
|
||||
#include "gailcell.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_SCALE_H__
|
||||
#define __GAIL_SCALE_H__
|
||||
|
||||
#include <gail/gailrange.h>
|
||||
#include "gailrange.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define __GAIL_SCALE_BUTTON_H__
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
#include <gail/gailbutton.h>
|
||||
#include "gailbutton.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_SCROLLBAR_H__
|
||||
#define __GAIL_SCROLLBAR_H__
|
||||
|
||||
#include <gail/gailrange.h>
|
||||
#include "gailrange.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_SCROLLED_WINDOW_H__
|
||||
#define __GAIL_SCROLLED_WINDOW_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_SEPARATOR_H__
|
||||
#define __GAIL_SEPARATOR_H__
|
||||
|
||||
#include <gail/gailwidget.h>
|
||||
#include "gailwidget.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_SPIN_BUTTON_H__
|
||||
#define __GAIL_SPIN_BUTTON_H__
|
||||
|
||||
#include <gail/gailentry.h>
|
||||
#include "gailentry.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_STATUSBAR_H__
|
||||
#define __GAIL_STATUSBAR_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_SUB_MENU_ITEM_H__
|
||||
#define __GAIL_SUB_MENU_ITEM_H__
|
||||
|
||||
#include <gail/gailmenuitem.h>
|
||||
#include "gailmenuitem.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
#define __GAIL_TEXT_CELL_H__
|
||||
|
||||
#include <atk/atk.h>
|
||||
#include <gail/gailrenderercell.h>
|
||||
#include "gailrenderercell.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_TEXT_VIEW_H__
|
||||
#define __GAIL_TEXT_VIEW_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
#include <libgail-util/gailtextutil.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_TOGGLE_BUTTON_H__
|
||||
#define __GAIL_TOGGLE_BUTTON_H__
|
||||
|
||||
#include <gail/gailbutton.h>
|
||||
#include "gailbutton.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -21,8 +21,8 @@
|
||||
#define __GAIL_TREE_VIEW_H__
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
#include <gail/gailcontainer.h>
|
||||
#include <gail/gailcell.h>
|
||||
#include "gailcontainer.h"
|
||||
#include "gailcell.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#ifndef __GAIL_WINDOW_H__
|
||||
#define __GAIL_WINDOW_H__
|
||||
|
||||
#include <gail/gailcontainer.h>
|
||||
#include "gailcontainer.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user