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

« back to all changes in this revision

Viewing changes to src/libgnumeric.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:
40
40
#include "style-font.h"
41
41
#include "mstyle.h"
42
42
#include "style-color.h"
43
 
#include "str.h"
44
43
#include "print.h"
45
44
#include "dependent.h"
46
45
#include "sheet-autofill.h"
57
56
#include "hlink.h"
58
57
#include "wbc-gtk-impl.h"
59
58
#include <goffice/goffice.h>
60
 
#include <goffice/utils/go-file.h>
61
 
#include <goffice/app/go-plugin.h>
62
 
#include <goffice/app/go-plugin-service.h>
63
 
#include <goffice/app/go-cmd-context.h>
64
 
#include <goffice/app/go-plugin-loader-module.h>
65
59
#include <glade/glade.h>
66
60
 
67
61
#ifdef HAVE_SYS_RESOURCE_H
264
258
 
265
259
        g_object_new (GNM_APP_TYPE, NULL);
266
260
        mathfunc_init ();
267
 
        gnm_string_init ();
268
261
 
269
262
        gnm_style_init ();
270
263
        gnm_conf_init (fast);
345
338
        gnm_conf_shutdown ();
346
339
        gnm_style_shutdown ();
347
340
 
348
 
        gnm_string_shutdown ();
349
341
        libgoffice_shutdown ();
350
342
        plugin_services_shutdown ();
351
343
        g_object_unref (gnm_app_get_app ());