~ubuntu-branches/ubuntu/feisty/gnumeric/feisty

« back to all changes in this revision

Viewing changes to plugins/plan-perfect/pln.c

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2006-12-06 13:55:23 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061206135523-6bh02cebuk0hduva
Tags: 1.7.5-1ubuntu1
* Merge with debian experimental:
  - debian/control, debian/*-gtk-*, debian/rules,
    debian/shlibs.local: Xubuntu changes for
    gtk/gnome multibuild.
  - run intltool-update in po*
  - Build Depend on intltool

Show diffs side-by-side

added added

removed removed

Lines of Context:
641
641
 
642
642
                if (texpr != NULL) {
643
643
                        if (v != NULL)
644
 
                                cell_set_expr_and_value (cell, texpr, v, TRUE);
 
644
                                gnm_cell_set_expr_and_value (cell, texpr, v, TRUE);
645
645
                        else
646
 
                                cell_set_expr (cell, texpr);
 
646
                                gnm_cell_set_expr (cell, texpr);
647
647
                        gnm_expr_top_unref (texpr);
648
648
                } else if (v != NULL)
649
 
                        cell_set_value (cell, v);
 
649
                        gnm_cell_set_value (cell, v);
650
650
        }
651
651
 
652
652
        return NULL;