From 27d2dbacd4d4833c9846a2872cb04f7bced3a3c3 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Mon, 19 Apr 2010 14:18:59 -0400 Subject: [PATCH] Use g_set_error_literal where appropriate --- gio/gschema-compile.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gio/gschema-compile.c b/gio/gschema-compile.c index 3a657bb..4e2de4d 100644 --- a/gio/gschema-compile.c +++ b/gio/gschema-compile.c @@ -56,8 +56,8 @@ is_valid_keyname (const gchar *key, if (key[0] == '\0') { - g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, - "empty names are not permitted"); + g_set_error_literal (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, + "empty names are not permitted"); return FALSE; } @@ -255,10 +255,10 @@ start_element (GMarkupParseContext *context, if (domain == NULL) { - g_set_error (error, G_MARKUP_ERROR, - G_MARKUP_ERROR_INVALID_CONTENT, - "l10n requested, but no " - "gettext domain given"); + g_set_error_literal (error, G_MARKUP_ERROR, + G_MARKUP_ERROR_INVALID_CONTENT, + "l10n requested, but no " + "gettext domain given"); return; } @@ -285,10 +285,10 @@ start_element (GMarkupParseContext *context, if (state->context != NULL) { - g_set_error (error, G_MARKUP_ERROR, - G_MARKUP_ERROR_INVALID_CONTENT, - "translation context given for " - " value without l10n enabled"); + g_set_error_literal (error, G_MARKUP_ERROR, + G_MARKUP_ERROR_INVALID_CONTENT, + "translation context given for " + " value without l10n enabled"); return; } } @@ -394,7 +394,7 @@ end_element (GMarkupParseContext *context, { g_set_error_literal (error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, - "Element is required in \n"); + "element is required in \n"); return; } -- 2.7.4