aboutsummaryrefslogtreecommitdiff
path: root/src/libappindicator/app-indicator-enum-types.c.in
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2010-02-04 17:45:52 -0800
committerSebastien Bacher <seb128@ubuntu.com>2010-02-04 17:45:52 -0800
commitb8830e1f10bffec7b3bcdacef125b4cbf5472d01 (patch)
tree83c86a160709350de6c76455ab45c5be818c5fef /src/libappindicator/app-indicator-enum-types.c.in
parent10c9c763d83386c7a0dea94868d7238acee18ba9 (diff)
parent5bd28754757d8fa61fdad1d7f065d1c25c75befa (diff)
downloadayatana-indicator-application-0.0.11-0ubuntu1.tar.gz
ayatana-indicator-application-0.0.11-0ubuntu1.tar.bz2
ayatana-indicator-application-0.0.11-0ubuntu1.zip
releasing version 0.0.11-0ubuntu10.0.11-0ubuntu1
Diffstat (limited to 'src/libappindicator/app-indicator-enum-types.c.in')
-rw-r--r--src/libappindicator/app-indicator-enum-types.c.in61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/libappindicator/app-indicator-enum-types.c.in b/src/libappindicator/app-indicator-enum-types.c.in
deleted file mode 100644
index 449f3fc..0000000
--- a/src/libappindicator/app-indicator-enum-types.c.in
+++ /dev/null
@@ -1,61 +0,0 @@
-/*** BEGIN file-header ***/
-/*
-An object to represent the application as an application indicator
-in the system panel.
-
-Copyright 2009 Canonical Ltd.
-
-Authors:
- Ted Gould <ted@canonical.com>
-
-This program is free software: you can redistribute it and/or modify it
-under the terms of either or both of the following licenses:
-
-1) the GNU Lesser General Public License version 3, as published by the
- Free Software Foundation; and/or
-2) the GNU Lesser General Public License version 2.1, as published by
- the Free Software Foundation.
-
-This program is distributed in the hope that it will be useful, but
-WITHOUT ANY WARRANTY; without even the implied warranties of
-MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
-PURPOSE. See the applicable version of the GNU Lesser General Public
-License for more details.
-
-You should have received a copy of both the GNU Lesser General Public
-License version 3 and version 2.1 along with this program. If not, see
-<http://www.gnu.org/licenses/>
-*/
-
-#include "libappindicator/app-indicator-enum-types.h"
-
-/*** END file-header ***/
-
-/*** BEGIN file-production ***/
-#include "@filename@"
-/*** END file-production ***/
-
-/*** BEGIN value-header ***/
-GType
-@enum_name@_get_type (void)
-{
- static GType etype = 0;
- if (G_UNLIKELY(etype == 0)) {
- static const G@Type@Value values[] = {
-/*** END value-header ***/
-
-/*** BEGIN value-production ***/
- { @VALUENAME@, "@VALUENAME@", "@valuenick@" },
-/*** END value-production ***/
-
-/*** BEGIN value-tail ***/
- { 0, NULL, NULL}
- };
-
- etype = g_@type@_register_static (g_intern_static_string("@EnumName@"), values);
- }
-
- return etype;
-}
-
-/*** END value-tail ***/