Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 261674 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-10 / +10 lines)
Line  Link Here
0
-- /var/tmp/portage/dev-util/anjuta-2.24.2-orig/plugins/class-inheritance/class-inherit.c  2008-10-19 17:35:30.000000000 +0200
0
++ /var/tmp/portage/dev-util/anjuta-2.24.2/work/anjuta-2.24.2/plugins/class-inheritance/class-inherit.c    2009-03-08 13:19:40.000000000 +0100
Lines 448-454 Link Here
448
 */
448
 */
449
static void
449
static void
450
cls_inherit_draw_expanded_node (AnjutaClassInheritance *plugin, Agnode_t *node,
450
cls_inherit_draw_expanded_node (AnjutaClassInheritance *plugin, Agnode_t *node,
451
                                       point* node_pos, gdouble node_width, gdouble node_height) {
451
                                       pointf* node_pos, gdouble node_width, gdouble node_height) {
452
       GnomeCanvasItem *item;
452
       GnomeCanvasItem *item;
453
       NodeData *node_data;
453
       NodeData *node_data;
454
       NodeExpansionStatus *node_status;
454
       NodeExpansionStatus *node_status;
Lines 647-653 Link Here
647
static void
647
static void
648
cls_inherit_draw_single_node (AnjutaClassInheritance *plugin, Agnode_t *node,
648
cls_inherit_draw_single_node (AnjutaClassInheritance *plugin, Agnode_t *node,
649
                                       point *node_pos, gdouble node_width, gdouble node_height) {
649
                                       pointf *node_pos, gdouble node_width, gdouble node_height) {
650
       NodeData *node_data;
650
       NodeData *node_data;
651
       GnomeCanvasItem *item;
651
       GnomeCanvasItem *item;
652
       gdouble text_width_value;
652
       gdouble text_width_value;
Lines 754-763 Link Here
754
       {
754
       {
755
               gdouble node_width;
755
               gdouble node_width;
756
               gdouble node_height;
756
               gdouble node_height;
757
               point node_pos;
757
               pointf node_pos;
758
               /* get some infos from the node */
758
               /* get some infos from the node */
759
               node_pos = ND_coord_i(node);
759
               node_pos = ND_coord(node);
760
               node_width = ND_width (node);
760
               node_width = ND_width (node);
761
               node_height = ND_height (node);
761
               node_height = ND_height (node);
762
-- /var/tmp/portage/dev-util/anjuta-2.24.2-orig/plugins/profiler/gprof-function-call-chart-view.c  2008-10-19 17:35:26.000000000 +0200
762
++ /var/tmp/portage/dev-util/anjuta-2.24.2/work/anjuta-2.24.2/plugins/profiler/gprof-function-call-chart-view.c        2009-03-08 13:21:11.000000000 +0100
Lines 250-256 Link Here
250
250
251
static void
251
static void
252
gprof_function_call_chart_view_draw_node (GProfFunctionCallChartView *self,
252
gprof_function_call_chart_view_draw_node (GProfFunctionCallChartView *self,
253
                                                                                 Agnode_t *node, point *node_pos,
253
                                                                                 Agnode_t *node, pointf *node_pos,
254
                                                                                 gdouble node_width, 
254
                                                                                 gdouble node_width, 
255
                                                                                 gdouble node_height)
255
                                                                                 gdouble node_height)
256
{
256
{
Lines 333-339 Link Here
333
333
334
static void
334
static void
335
gprof_function_call_chart_view_draw_edge (GProfFunctionCallChartView *self,
335
gprof_function_call_chart_view_draw_edge (GProfFunctionCallChartView *self,
336
                                                                                 Agedge_t *edge, point *node_pos,
336
                                                                                 Agedge_t *edge, pointf *node_pos,
337
                                                                                 gdouble node_height)
337
                                                                                 gdouble node_height)
338
{
338
{
339
       GnomeCanvasItem *item;
339
       GnomeCanvasItem *item;
Lines 529-535 Link Here
529
       GProfFunctionCallChartView *self;
529
       GProfFunctionCallChartView *self;
530
       Agedge_t *current_edge;
530
       Agedge_t *current_edge;
531
       Agraph_t *current_graph;
531
       Agraph_t *current_graph;
532
       point node_pos;
532
       pointf node_pos;
533
       gdouble node_width;
533
       gdouble node_width;
534
       gdouble node_height;
534
       gdouble node_height;
535
535
Lines 541-547 Link Here
541
541
542
               if (self->priv->current_node)
542
               if (self->priv->current_node)
543
               {
543
               {
544
                       node_pos = ND_coord_i (self->priv->current_node);
544
                       node_pos = ND_coord (self->priv->current_node);
545
                       node_pos.y += self->priv->y_offset;
545
                       node_pos.y += self->priv->y_offset;
546
                       node_width = ND_width (self->priv->current_node);
546
                       node_width = ND_width (self->priv->current_node);
547
                       node_height = ND_height (self->priv->current_node);
547
                       node_height = ND_height (self->priv->current_node);

Return to bug 261674