~ubuntu-branches/debian/sid/gnome-color-chooser/sid

« back to all changes in this revision

Viewing changes to src/exporter.cc

  • Committer: Bazaar Package Importer
  • Author(s): Werner Pantke
  • Date: 2008-09-09 11:46:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080909114625-abbnpd1rhju2bi8i
Tags: 0.2.4-1
* new upstream release
  - license is now GNU GPL3+
  - strip down indirect dependencies by using LDFLAGS="-Wl,--as-needed"
    by default (if linker supports it)
* new homepage URL ( http://gnomecc.sourceforge.net ) (Closes: #493648)
* panel settings don't affect evolution's mail settings dialog anymore
  (LP: #219460)
* bumped Debian Policy Standards-Version to 3.8.0 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright (C) 2006-2007 W. Pantke <gnome-color-chooser@punk-ass-bitch.org>
2
 
//  
3
 
// This program is free software; you can redistribute it and/or modify
4
 
// it under the terms of the GNU General Public License as published by
5
 
// the Free Software Foundation; either version 2 of the License, or
6
 
// (at your option) any later version.
7
 
// 
8
 
// This program is distributed in the hope that it will be useful,
9
 
// but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
// GNU General Public License for more details.
12
 
// 
13
 
// You should have received a copy of the GNU General Public License
14
 
// along with this program; if not, write to the Free Software 
15
 
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
1
/* GNOME Color Chooser - GTK+/GNOME desktop appearance customization tool
 
2
 * Copyright (C) 2006-2008 Werner Pantke <wpantke@punk-ass-bitch.org>
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation, either version 3 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 * Project email: <gnome-color-chooser@punk-ass-bitch.org>
 
18
 *
 
19
 */
16
20
 
17
21
#include "exporter.h"
18
 
 
 
22
#include "treehandler.h"
19
23
#include "gtkrcexporter.h"
20
24
#include "gtpexporter.h"
21
25
 
22
26
 
 
27
TreeHandler *Exporter::exporter_pConfig = NULL;
 
28
 
 
29
 
 
30
 
23
31
/*** static factory methods ***/
24
32
 
25
33
 
29
37
}
30
38
 
31
39
 
32
 
/* init _must_ be executed once before any exporter creation,
33
 
 * otherwise the creation process may crash!
 
40
/* init has to be called before any exporter creation!
34
41
 */
35
42
Exporter* Exporter::create_exporter(ExporterType t)
36
43
{
37
 
 
38
44
  if (exporter_pConfig)
39
45
  {
40
46
    switch(t)
50
56
 
51
57
  return NULL;
52
58
}
 
59
 
 
60