Removed conflict indicators.
[dia.git] / lib / diaerror.c
blob5c713532a8afc3e0c60fd9aea635302161ae76b5
1 /* Dia -- an diagram creation/manipulation program
2 * Copyright (C) 1998 Alexander Larsson
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 #include "diaerror.h"
22 /** Get the error quark
23 * This quark is apparently only used in proplist_load.
24 * @return An quark for GError creation.
26 GQuark
27 dia_error_quark(void)
29 static GQuark q = 0;
30 if (!q)
31 q = g_quark_from_static_string("dia-error-quark");
32 return q;