diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-04-04 13:24:34 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-04-04 13:24:34 +0800 |
commit | 08940ce6f639f8ae75ed08ebd0bfee4fc02a29af (patch) | |
tree | a684e74783fe2bade934f16a5a906afa9b5107c8 /widgets/table/e-cell-text.c | |
parent | d38e71bfd792033844cf7b7913c12924aedcfa50 (diff) | |
download | gsoc2013-evolution-08940ce6f639f8ae75ed08ebd0bfee4fc02a29af.tar gsoc2013-evolution-08940ce6f639f8ae75ed08ebd0bfee4fc02a29af.tar.gz gsoc2013-evolution-08940ce6f639f8ae75ed08ebd0bfee4fc02a29af.tar.bz2 gsoc2013-evolution-08940ce6f639f8ae75ed08ebd0bfee4fc02a29af.tar.lz gsoc2013-evolution-08940ce6f639f8ae75ed08ebd0bfee4fc02a29af.tar.xz gsoc2013-evolution-08940ce6f639f8ae75ed08ebd0bfee4fc02a29af.tar.zst gsoc2013-evolution-08940ce6f639f8ae75ed08ebd0bfee4fc02a29af.zip |
Fix headers. Ditto. Ditto. Ditto. Ditto. Ditto. Ditto. Ditto. Ditto.
2001-04-04 Kjartan Maraas <kmaraas@gnome.org>
* e-cell-date.c: Fix headers.
* e-cell-number.c: Ditto.
* e-cell-pixbuf.[ch]: Ditto.
* e-cell-size.c: Ditto.
* e-cell-text.c: Ditto.
* e-cell-tree.c: Ditto.
* e-table-click-to-add.[ch]: Ditto.
* e-table-column-specification.h: Ditto.
* e-table-config-field.c: Ditto.
* e-table-config.[ch]: Ditto.
* e-table-example-2.c: Ditto.
* e-table-field-chooser-dialog.[ch]: Ditto.
* e-table-field-chooser-item.c: Ditto.
* e-table-field-chooser.h: Ditto.
* e-table-group-container.c: Ditto.
* e-table-item.c: Ditto
* e-table-memory.c: Ditto.
* e-table-selection-model.c: Ditto.
* e-table-sorter.c: Ditto.
* e-table-subset-variable.c: Ditto.
* e-table.c: Ditto.
* e-tree-memory.c: Ditto.
* e-tree-model.c: Ditto.
* e-tree-selection-model.[ch]: Ditto.
* e-tree-sorted-variable.c: Ditto.
* e-tree-sorted.c: Ditto.
* e-tree-table-adapter.c: Ditto.
* e-tree.[ch]: Same here.
svn path=/trunk/; revision=9164
Diffstat (limited to 'widgets/table/e-cell-text.c')
-rw-r--r-- | widgets/table/e-cell-text.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c index 7e045853b3..4be7439d4c 100644 --- a/widgets/table/e-cell-text.c +++ b/widgets/table/e-cell-text.c @@ -25,6 +25,12 @@ */ #include <config.h> +#include <stdio.h> +#include <unicode.h> +#include <ctype.h> +#include <math.h> +#include <string.h> +#include <gdk/gdkx.h> /* for BlackPixel */ #include <gtk/gtkenums.h> #include <gtk/gtkentry.h> #include <gtk/gtkwindow.h> @@ -32,8 +38,7 @@ #include <gtk/gtksignal.h> #include <gdk/gdkkeysyms.h> #include <libgnomeui/gnome-canvas.h> -#include <stdio.h> -#include <unicode.h> +#include <libgnomeui/gnome-canvas-rect-ellipse.h> #include "e-cell-text.h" #include "gal/util/e-util.h" #include "gal/widgets/e-canvas.h" @@ -45,9 +50,6 @@ #include "gal/util/e-text-event-processor-emacs-like.h" #include "e-table-tooltip.h" -#include <gdk/gdkx.h> /* for BlackPixel */ -#include <ctype.h> -#include <math.h> #define ECT_CLASS(c) (E_CELL_TEXT_CLASS(GTK_OBJECT((c))->klass)) |