~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/extension/init.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This is what gets executed to initialize all of the modules.  For
 
3
 * the internal modules this invovles executing their initialization
 
4
 * functions, for external ones it involves reading their .spmodule
 
5
 * files and bringing them into Sodipodi.
 
6
 *
 
7
 * Authors:
 
8
 *   Ted Gould <ted@gould.cx>
 
9
 *
 
10
 * Copyright (C) 2002-2004 Authors
 
11
 *
 
12
 * Released under GNU GPL, read the file 'COPYING' for more information
 
13
 */
 
14
 
 
15
#ifndef INKSCAPE_EXTENSION_INIT_H__
 
16
#define INKSCAPE_EXTENSION_INIT_H__
 
17
 
 
18
namespace Inkscape {
 
19
namespace Extension {
 
20
 
 
21
void init (void);
 
22
 
 
23
} } /* namespace Inkscape::Extension */
 
24
 
 
25
#endif /* INKSCAPE_EXTENSION_INIT_H__ */
 
26
 
 
27
/*
 
28
  Local Variables:
 
29
  mode:c++
 
30
  c-file-style:"stroustrup"
 
31
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
32
  indent-tabs-mode:nil
 
33
  fill-column:99
 
34
  End:
 
35
*/
 
36
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :