~ubuntu-branches/ubuntu/maverick/xfce4-terminal/maverick

« back to all changes in this revision

Viewing changes to terminal/terminal-enum-types.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2007-12-08 14:51:31 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20071208145131-2mcjfdnkkigad605
Tags: 0.2.8-1ubuntu1
* Merge with Debian unstable, remaining Ubuntu changes:
  - Adhere to DebianMaintainerField
  - Keep using xfce.mk
  - debian/patches/01_desktop_category.patch: show under the Accessories not
    the System menu.
* debian/compat: bump to 5.
* debian/control: bump debhelper b-d to (>= 5), add autotools-dev, drop chrpath.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#define GTK_ENABLE_BROKEN
9
9
#include <terminal/terminal-enum-types.h>
10
10
#include <terminal/terminal-app.h>
11
 
#include <terminal/terminal-helper.h>
12
11
#include <terminal/terminal-preferences.h>
13
12
 
14
13
/* enumerations from "terminal-app.h" */
28
27
        return type;
29
28
}
30
29
 
31
 
/* enumerations from "terminal-helper.h" */
32
 
GType
33
 
terminal_helper_category_get_type (void)
34
 
{
35
 
        static GType type = 0;
36
 
        if (type == 0) {
37
 
        static const GEnumValue values[] = {
38
 
        { TERMINAL_HELPER_WEBBROWSER, "TERMINAL_HELPER_WEBBROWSER", "webbrowser" },
39
 
        { TERMINAL_HELPER_MAILREADER, "TERMINAL_HELPER_MAILREADER", "mailreader" },
40
 
        { 0, NULL, NULL }
41
 
        };
42
 
        type = g_enum_register_static ("TerminalHelperCategory", values);
43
 
  }
44
 
        return type;
45
 
}
46
 
 
47
30
/* enumerations from "terminal-options.h" */
48
31
GType
49
32
terminal_visibility_get_type (void)