aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-text.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-04-04 20:25:55 +0800
committerChris Lahey <clahey@src.gnome.org>2001-04-04 20:25:55 +0800
commit7957a3085c1aabf7d7b3c6820a1d9eb496cc3a96 (patch)
treee39dc1415412a114bea07df4ea8897cfcdd4e816 /widgets/text/e-text.c
parent48200fbd57c44325d7aa35f9d4c4fcc477ce1f9c (diff)
downloadgsoc2013-evolution-7957a3085c1aabf7d7b3c6820a1d9eb496cc3a96.tar
gsoc2013-evolution-7957a3085c1aabf7d7b3c6820a1d9eb496cc3a96.tar.gz
gsoc2013-evolution-7957a3085c1aabf7d7b3c6820a1d9eb496cc3a96.tar.bz2
gsoc2013-evolution-7957a3085c1aabf7d7b3c6820a1d9eb496cc3a96.tar.lz
gsoc2013-evolution-7957a3085c1aabf7d7b3c6820a1d9eb496cc3a96.tar.xz
gsoc2013-evolution-7957a3085c1aabf7d7b3c6820a1d9eb496cc3a96.tar.zst
gsoc2013-evolution-7957a3085c1aabf7d7b3c6820a1d9eb496cc3a96.zip
Fixed headers. Moved the .h associated with each .c to the top of the list
2001-04-04 Christopher James Lahey <clahey@ximian.com> * gal/e-text/e-text-model-uri.c, gal/e-text/e-text.c, gal/e-text/e-text.h, gal/e-text/e-text-event-processor.c, gal/util/e-xml-utils.c, gal/widgets/e-cursors.c, gal/widgets/e-cursors.h: Fixed headers. Moved the .h associated with each .c to the top of the list of included files. * gal/util/e-util.h: Removed the bonobo-xobject.h header here. * gal/util/e-xml-utils.c: Replaced strcasecmp with g_strcasecmp. * gal/widgets/e-canvas-vbox.c: Make this work even if the item is destroyed after the vbox. * gal/widgets/e-categories.c (do_parse_categories): Made this translate using e_utf8_from_locale string as it should. svn path=/trunk/; revision=9175
Diffstat (limited to 'widgets/text/e-text.c')
-rw-r--r--widgets/text/e-text.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c
index 9bfc504459..785367ce32 100644
--- a/widgets/text/e-text.c
+++ b/widgets/text/e-text.c
@@ -18,17 +18,19 @@
* Author: Federico Mena <federico@nuclecu.unam.mx> */
#include <config.h>
+
+#include "e-text.h"
+
#include <math.h>
#include <ctype.h>
#include <unicode.h>
-#include <string.h>
#include <gdk/gdkx.h> /* for BlackPixel */
#include <gtk/gtkinvisible.h>
#include <gtk/gtkmain.h>
#include <gtk/gtkselection.h>
#include <gtk/gtkwindow.h>
#include <libgnomeui/gnome-canvas-rect-ellipse.h>
-#include "e-text.h"
+
#include "gal/widgets/e-canvas.h"
#include "gal/widgets/e-canvas-utils.h"
#include "gal/widgets/e-unicode.h"