cssparser: Add _gtk_css_parser_error_full()

This commit is contained in:
Benjamin Otte 2012-03-26 18:36:20 +02:00
parent 9b7640b898
commit e7acdec220
2 changed files with 22 additions and 0 deletions

View File

@ -142,6 +142,23 @@ _gtk_css_parser_error (GtkCssParser *parser,
_gtk_css_parser_take_error (parser, error);
}
void
_gtk_css_parser_error_full (GtkCssParser *parser,
GtkCssProviderError code,
const char *format,
...)
{
GError *error;
va_list args;
va_start (args, format);
error = g_error_new_valist (GTK_CSS_PROVIDER_ERROR,
code, format, args);
va_end (args);
_gtk_css_parser_take_error (parser, error);
}
static gboolean
gtk_css_parser_new_line (GtkCssParser *parser)
{

View File

@ -19,6 +19,7 @@
#define __GTK_CSS_PARSER_PRIVATE_H__
#include "gtk/gtkcsstypesprivate.h"
#include <gtk/gtkcssprovider.h>
#include <gtk/gtksymboliccolor.h>
G_BEGIN_DECLS
@ -48,6 +49,10 @@ void _gtk_css_parser_take_error (GtkCssParser *parser
void _gtk_css_parser_error (GtkCssParser *parser,
const char *format,
...) G_GNUC_PRINTF (2, 3);
void _gtk_css_parser_error_full (GtkCssParser *parser,
GtkCssProviderError code,
const char *format,
...) G_GNUC_PRINTF (3, 4);
guint _gtk_css_parser_get_line (GtkCssParser *parser);
guint _gtk_css_parser_get_position (GtkCssParser *parser);