diff options
author | Cyrille Chepelov <cyrille@src.gnome.org> | 2002-06-08 13:30:31 +0000 |
---|---|---|
committer | Cyrille Chepelov <cyrille@src.gnome.org> | 2002-06-08 13:30:31 +0000 |
commit | d1b2d250ecc5154169bc68678770d09625fd9dbb (patch) | |
tree | 197dc3f3ea212ff9e1e621e1302cc4633a8ada6d /lib/dia_xml.h | |
parent | 8cef20939e4b506bf34bb7dc0d0eafd6eeb7d196 (diff) | |
download | dia-d1b2d250ecc5154169bc68678770d09625fd9dbb.tar.xz |
Adapted for gtk2. Removed dependencies on libunicode, on iconv(), on
* configure.in:
* Makefile.am: Adapted for gtk2.
Removed dependencies on libunicode, on iconv(), on langinfo().
* acconfig.h: removed (now obsolete)
* lib/charconv.[ch]: removed (superceded by glib)
* lib/ps-utf8.[ch]: removed dependency on charconv.[ch]
* **/*.[ch]: removed (utfchar *), (unichar) and other charconv or
libunicode types for their glib counterparts. Fixed the include
paths for libxml2. Removed all traces of libxml1 or non-UTF8
support (there were remains in objects/uml).
Diffstat (limited to 'lib/dia_xml.h')
-rw-r--r-- | lib/dia_xml.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/dia_xml.h b/lib/dia_xml.h index f3ad9ebb..3c7c1797 100644 --- a/lib/dia_xml.h +++ b/lib/dia_xml.h @@ -1,4 +1,4 @@ -/* Dia -- an diagram creation/manipulation program +/* dia -- an diagram creation/manipulation program * Copyright (C) 1998 Alexander Larsson * * This program is free software; you can redistribute it and/or modify @@ -23,14 +23,11 @@ #include "color.h" #include "font.h" #include "diavar.h" +#include <libxml/tree.h> DIAVAR int pretty_formated_xml; -#ifdef __XML_TREE_H__ typedef xmlNodePtr XML_NODE; -#else -typedef void * XML_NODE; -#endif typedef XML_NODE ObjectNode; typedef XML_NODE AttributeNode; |