summaryrefslogtreecommitdiff
path: root/geocode-glib/geocode-error.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2011-04-19 17:04:48 +0100
committerBastien Nocera <hadess@hadess.net>2011-04-21 02:57:28 +0100
commitefcddc5889c75e85e1b07e497c28cfc736b5d115 (patch)
tree6bfbc2af2b03b12d6c57f78fbd04dbc4fb43e66d /geocode-glib/geocode-error.c
downloadgeocode-glib-efcddc5889c75e85e1b07e497c28cfc736b5d115.tar.gz
geocode-glib
Diffstat (limited to 'geocode-glib/geocode-error.c')
-rw-r--r--geocode-glib/geocode-error.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/geocode-glib/geocode-error.c b/geocode-glib/geocode-error.c
new file mode 100644
index 0000000..b7a04cd
--- /dev/null
+++ b/geocode-glib/geocode-error.c
@@ -0,0 +1,34 @@
+/*
+ Copyright (C) 2011 Bastien Nocera
+
+ The Gnome Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ The Gnome Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with the Gnome Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301 USA.
+
+ Authors: Bastien Nocera <hadess@hadess.net>
+
+ */
+
+#include "geocode-error.h"
+
+GQuark
+geocode_error_quark (void)
+{
+ static GQuark quark;
+ if (!quark)
+ quark = g_quark_from_static_string ("geocode_error");
+
+ return quark;
+}
+