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

« back to all changes in this revision

Viewing changes to src/workbook-priv.h

  • 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:
3
3
# define _GNM_WORKBOOK_PRIV_H_
4
4
 
5
5
#include "workbook.h"
6
 
#include <goffice/app/file.h>
7
 
#include <goffice/app/go-doc-impl.h>
8
 
#include <goffice/utils/datetime.h>
 
6
#include <goffice/goffice.h>
9
7
 
10
8
G_BEGIN_DECLS
11
9
 
67
65
} while (0)
68
66
 
69
67
#define WORKBOOK_FOREACH_CONTROL(wb, view, control, code)               \
70
 
        WORKBOOK_FOREACH_VIEW((wb), view,                               \
 
68
        WORKBOOK_FOREACH_VIEW((wb), view,                               \
71
69
                WORKBOOK_VIEW_FOREACH_CONTROL(view, control, code);)
72
70
 
73
71