diff options
| author | Jon Phillips <jon@fabricatorz.com> | 2006-08-24 23:19:11 +0000 |
|---|---|---|
| committer | kidproto <kidproto@users.sourceforge.net> | 2006-08-24 23:19:11 +0000 |
| commit | 1cab31d2570e92b86ccf48c143290ef5b6f4db10 (patch) | |
| tree | df995977df306ec09174f1d714014359f8594409 /src/xml/croco-node-iface.cpp | |
| parent | Ok, committed msgloan's patch to convert gbooleans to bools thus completing (diff) | |
| download | inkscape-1cab31d2570e92b86ccf48c143290ef5b6f4db10.tar.gz inkscape-1cab31d2570e92b86ccf48c143290ef5b6f4db10.zip | |
Cleaned up more of the gboolean to bool janitorial task...great!
(bzr r1634)
Diffstat (limited to 'src/xml/croco-node-iface.cpp')
| -rw-r--r-- | src/xml/croco-node-iface.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xml/croco-node-iface.cpp b/src/xml/croco-node-iface.cpp index 0464e4fb7..17c3495a5 100644 --- a/src/xml/croco-node-iface.cpp +++ b/src/xml/croco-node-iface.cpp @@ -38,6 +38,8 @@ static char *get_attr(CRXMLNodePtr n, char const *a) } static char const *get_local_name(CRXMLNodePtr n) { return local_part(static_cast<Node const *>(n)->name()); } +// JON: Need to keep gboolean to interface with libcroco +// TODO: convert to bool static gboolean is_element_node(CRXMLNodePtr n) { return static_cast<Node const *>(n)->type() == ELEMENT_NODE; } } |
