loudmouth/lm-error.c
author Frank Zschockelt <lm@freakysoft.de>
Sat, 13 Feb 2016 12:16:45 +0100
changeset 705 1b455131d0f1
parent 690 7ccf2113ec5f
permissions -rw-r--r--
Bumped version to 1.5.3

/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * Copyright (C) 2003 Imendio AB
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program; if not, see <https://www.gnu.org/licenses>
 */

/**
 * SECTION:lm-error
 * @Title: LmError
 * @Short_description: Error reporting.
 */

#include <config.h>
#include <glib.h>
#include "lm-error.h"

GQuark
lm_error_quark (void)
{
    static GQuark q = 0;

    if (q == 0) {
        q = g_quark_from_static_string ("lm-error-quark");
    }

    return q;
}