2005-01-29 20:54:48 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
2003-07-24 22:14:23 +08:00
|
|
|
*
|
|
|
|
* Config file serialization and deserialization interface
|
|
|
|
* Copyright (C) 2001-2002 Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2007-03-02 16:38:13 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-07-24 22:14:23 +08:00
|
|
|
*
|
2007-03-02 16:38:13 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2003-07-24 22:14:23 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-03-02 16:38:13 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
2003-07-24 22:14:23 +08:00
|
|
|
*
|
2007-03-02 16:38:13 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
2003-07-24 22:14:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "gimpconfig-error.h"
|
|
|
|
|
|
|
|
|
2005-01-29 20:54:48 +08:00
|
|
|
/**
|
|
|
|
* gimp_config_error_quark:
|
|
|
|
*
|
|
|
|
* This function is never called directly. Use GIMP_CONFIG_ERROR() instead.
|
|
|
|
*
|
|
|
|
* Return value: the #GQuark that defines the GimpConfig error domain.
|
|
|
|
*
|
|
|
|
* Since: GIMP 2.4
|
|
|
|
**/
|
2003-07-24 22:14:23 +08:00
|
|
|
GQuark
|
|
|
|
gimp_config_error_quark (void)
|
|
|
|
{
|
2006-04-06 20:07:18 +08:00
|
|
|
return g_quark_from_static_string ("gimp-config-error-quark");
|
2003-07-24 22:14:23 +08:00
|
|
|
}
|