From 01e72335a030735d97889528f29694179106f8c5 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Tue, 5 Oct 2010 08:03:19 +0100 Subject: [PATCH] cogl: Use Cogl (not COGL) consistently If I remember correctly, Robert wants to name Cogl, Cogl (not COGL) so start by having a consistent naming in the code. --- cogl/cogl-debug.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cogl/cogl-debug.c b/cogl/cogl-debug.c index 2289af2ab..99049a6ee 100644 --- a/cogl/cogl-debug.c +++ b/cogl/cogl-debug.c @@ -151,9 +151,9 @@ cogl_arg_no_debug_cb (const char *key, static GOptionEntry cogl_args[] = { #ifdef COGL_ENABLE_DEBUG { "cogl-debug", 0, 0, G_OPTION_ARG_CALLBACK, cogl_arg_debug_cb, - N_("COGL debugging flags to set"), "FLAGS" }, + N_("Cogl debugging flags to set"), "FLAGS" }, { "cogl-no-debug", 0, 0, G_OPTION_ARG_CALLBACK, cogl_arg_no_debug_cb, - N_("COGL debugging flags to unset"), "FLAGS" }, + N_("Cogl debugging flags to unset"), "FLAGS" }, #endif /* COGL_ENABLE_DEBUG */ { NULL, }, }; @@ -184,8 +184,8 @@ cogl_get_option_group (void) GOptionGroup *group; group = g_option_group_new ("cogl", - _("COGL Options"), - _("Show COGL options"), + _("Cogl Options"), + _("Show Cogl options"), NULL, NULL); g_option_group_set_parse_hooks (group, pre_parse_hook, NULL);