pkgsrc/devel/anjuta/patches/patch-aa
2009-07-06 16:11:03 +00:00

21 lines
724 B
Text

$NetBSD: patch-aa,v 1.8 2009/07/06 16:11:03 joerg Exp $
--- plugins/class-inheritance/class-inherit.c.orig 2010-05-31 09:21:05.000000000 +0200
+++ plugins/class-inheritance/class-inherit.c
@@ -754,12 +754,12 @@ cls_inherit_draw_graph (AnjutaClassInher
{
gdouble node_width;
gdouble node_height;
- point node_pos;
+ pointf node_pos;
/* get some infos from the node */
- node_pos = ND_coord_i(node);
- node_width = ND_width (node);
- node_height = ND_height (node);
+ node_pos = node->u.coord;
+ node_width = node->u.width;
+ node_height = node->u.height;
if (strcmp ("record", ND_shape (node)->name) == 0 ) {
cls_inherit_draw_expanded_node (plugin, node, &node_pos, node_width, node_height);