diff options
Diffstat (limited to 'a11y/e-text')
-rw-r--r-- | a11y/e-text/Makefile.am | 22 | ||||
-rw-r--r-- | a11y/e-text/gal-a11y-e-text-factory.c | 2 | ||||
-rw-r--r-- | a11y/e-text/gal-a11y-e-text.c | 6 | ||||
-rw-r--r-- | a11y/e-text/gal-a11y-e-text.h | 2 |
4 files changed, 27 insertions, 5 deletions
diff --git a/a11y/e-text/Makefile.am b/a11y/e-text/Makefile.am new file mode 100644 index 0000000000..bfbddff088 --- /dev/null +++ b/a11y/e-text/Makefile.am @@ -0,0 +1,22 @@ +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/widgets/ \ + $(EXTRA_GNOME_CFLAGS) \ + $(GNOME_BONOBO_CFLAGS) \ + $(GNOME_INCLUDEDIR) \ + $(ICONV_CFLAGS) \ + $(GNOME_FULL_CFLAGS) \ + $(GNOME_EXTRA_CFLAGS) \ + -DG_LOG_DOMAIN=\"e-text\" + +noinst_LTLIBRARIES = libgal-a11y-etext.la + +libgal_a11y_etext_la_SOURCES = \ + gal-a11y-e-text-factory.c \ + gal-a11y-e-text.c + +libgal_a11y_etextincludedir = $(privincludedir)/a11y/e-text + +libgal_a11y_etextinclude_HEADERS = \ + gal-a11y-e-text-factory.h \ + gal-a11y-e-text.h diff --git a/a11y/e-text/gal-a11y-e-text-factory.c b/a11y/e-text/gal-a11y-e-text-factory.c index 24e3c28116..732bc57af4 100644 --- a/a11y/e-text/gal-a11y-e-text-factory.c +++ b/a11y/e-text/gal-a11y-e-text-factory.c @@ -7,7 +7,7 @@ */ #include <config.h> -#include "gal/e-text/e-text.h" +#include "text/e-text.h" #include "gal-a11y-e-text-factory.h" #include "gal-a11y-e-text.h" diff --git a/a11y/e-text/gal-a11y-e-text.c b/a11y/e-text/gal-a11y-e-text.c index 1ad9c33665..d23deef07d 100644 --- a/a11y/e-text/gal-a11y-e-text.c +++ b/a11y/e-text/gal-a11y-e-text.c @@ -12,9 +12,9 @@ #include <gtk/gtk.h> -#include "gal/a11y/gal-a11y-util.h" -#include "gal/e-text/e-text.h" -#include "gal/e-text/e-text-model-repos.h" +#include "a11y/gal-a11y-util.h" +#include "text/e-text.h" +#include "text/e-text-model-repos.h" #include "gal-a11y-e-text.h" #include "gal-a11y-e-text-factory.h" diff --git a/a11y/e-text/gal-a11y-e-text.h b/a11y/e-text/gal-a11y-e-text.h index a4b204d296..fce1ca64e4 100644 --- a/a11y/e-text/gal-a11y-e-text.h +++ b/a11y/e-text/gal-a11y-e-text.h @@ -10,7 +10,7 @@ #define __GAL_A11Y_E_TEXT_H__ #include <glib-object.h> -#include <gal/e-table/e-table-item.h> +#include <table/e-table-item.h> #define GAL_A11Y_TYPE_E_TEXT (gal_a11y_e_text_get_type ()) #define GAL_A11Y_E_TEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAL_A11Y_TYPE_E_TEXT, GalA11yEText)) |