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