~ubuntu-branches/ubuntu/quantal/gnumeric/quantal

« back to all changes in this revision

Viewing changes to src/dependent.c

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2009-06-22 13:37:20 UTC
  • mfrom: (1.1.20 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090622133720-rtdazsiz2lx5q8l7
Tags: 1.9.9-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Promoted gnumeric-doc to Recommends in gnumeric package for help to be
    installed automatically
  - gnumeric-gtk is a transitional package
  - gnumeric conflicts with gnumeric-gtk << 1.8.3-3ubuntu1
  - call initltool-update in po*
  - remove psiconv support (psiconv is in universe):
    o debian/control: remove B-D on libpsiconv-dev
    o debian/rules: don't pass --with-psiconv to ./configure
    o debian/gnumeric-plugins-extra.install: don't install the psiconv
      plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "value.h"
28
28
#include "cell.h"
29
29
#include "sheet.h"
30
 
#include "str.h"
31
30
#include "expr.h"
32
31
#include "expr-impl.h"
33
32
#include "expr-name.h"
38
37
#include "gutils.h"
39
38
#include "sheet-view.h"
40
39
 
 
40
#include <goffice/goffice.h>
41
41
#include <string.h>
42
 
#include <goffice/utils/go-glib-extras.h>
43
42
 
44
43
static void dependent_changed (GnmDependent *dep);
45
44
 
345
344
static void
346
345
dependent_changed (GnmDependent *dep)
347
346
{
348
 
        if (dep->sheet->workbook->recursive_dirty_enabled)
 
347
        if (dep->sheet &&
 
348
            dep->sheet->workbook->recursive_dirty_enabled)
349
349
                dependent_queue_recalc (dep);
350
350
        else
351
351
                dependent_flag_recalc (dep);