aboutsummaryrefslogtreecommitdiff
path: root/src/libappindicator/app-indicator-enum-types.c.in
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-01-27 10:25:49 -0600
committerTed Gould <ted@gould.cx>2010-01-27 10:25:49 -0600
commit1b40a682eac74a10720e4941cb9fc5e45038d3da (patch)
tree731f8d1b4dfdebff3cb41672745d411376732c89 /src/libappindicator/app-indicator-enum-types.c.in
parentbb106d11cf9b49eae0f3c3a8ccf9d104e65fbd1b (diff)
downloadayatana-indicator-application-1b40a682eac74a10720e4941cb9fc5e45038d3da.tar.gz
ayatana-indicator-application-1b40a682eac74a10720e4941cb9fc5e45038d3da.tar.bz2
ayatana-indicator-application-1b40a682eac74a10720e4941cb9fc5e45038d3da.zip
Making it so there is another level of translation so that we can use different strings in the enum.
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 ***/