]> Pileus Git - ~andy/gtk/commitdiff
Make the list of default languages more comprehensive. (Suggestion of Fco.
authorOwen Taylor <otaylor@redhat.com>
Sat, 16 Aug 2003 14:44:00 +0000 (14:44 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Sat, 16 Aug 2003 14:44:00 +0000 (14:44 +0000)
Sat Aug 16 10:34:49 2003  Owen Taylor  <otaylor@redhat.com>

        * modules/input/imcedilla.c: Make the list of default
        languages more comprehensive. (Suggestion of
        Fco. Javier F. Serrador)

Sat Aug  9 12:47:11 2003  Owen Taylor  <otaylor@redhat.com>

        * gdk/gdk.c (gdk_arg_context_parse): Fix broken
        parentheses when skipping args.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdk.c
modules/input/imcedilla.c

index be1c67042b593d2d57bb428dd969f7f2ba043901..2268ffcf3b83c4f0dc4d7ccc57f724f26c9c4442 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Sat Aug 16 10:34:49 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * modules/input/imcedilla.c: Make the list of default
+       languages more comprehensive. (Suggestion of
+       Fco. Javier F. Serrador)
+
+Sat Aug  9 12:47:11 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdk.c (gdk_arg_context_parse): Fix broken 
+       parentheses when skipping args.
+
 Sat Aug 16 16:22:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Fix major bug in row ref handling, so the new combo box
index be1c67042b593d2d57bb428dd969f7f2ba043901..2268ffcf3b83c4f0dc4d7ccc57f724f26c9c4442 100644 (file)
@@ -1,3 +1,14 @@
+Sat Aug 16 10:34:49 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * modules/input/imcedilla.c: Make the list of default
+       languages more comprehensive. (Suggestion of
+       Fco. Javier F. Serrador)
+
+Sat Aug  9 12:47:11 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdk.c (gdk_arg_context_parse): Fix broken 
+       parentheses when skipping args.
+
 Sat Aug 16 16:22:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Fix major bug in row ref handling, so the new combo box
index be1c67042b593d2d57bb428dd969f7f2ba043901..2268ffcf3b83c4f0dc4d7ccc57f724f26c9c4442 100644 (file)
@@ -1,3 +1,14 @@
+Sat Aug 16 10:34:49 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * modules/input/imcedilla.c: Make the list of default
+       languages more comprehensive. (Suggestion of
+       Fco. Javier F. Serrador)
+
+Sat Aug  9 12:47:11 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdk.c (gdk_arg_context_parse): Fix broken 
+       parentheses when skipping args.
+
 Sat Aug 16 16:22:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Fix major bug in row ref handling, so the new combo box
index be1c67042b593d2d57bb428dd969f7f2ba043901..2268ffcf3b83c4f0dc4d7ccc57f724f26c9c4442 100644 (file)
@@ -1,3 +1,14 @@
+Sat Aug 16 10:34:49 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * modules/input/imcedilla.c: Make the list of default
+       languages more comprehensive. (Suggestion of
+       Fco. Javier F. Serrador)
+
+Sat Aug  9 12:47:11 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdk.c (gdk_arg_context_parse): Fix broken 
+       parentheses when skipping args.
+
 Sat Aug 16 16:22:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Fix major bug in row ref handling, so the new combo box
index be1c67042b593d2d57bb428dd969f7f2ba043901..2268ffcf3b83c4f0dc4d7ccc57f724f26c9c4442 100644 (file)
@@ -1,3 +1,14 @@
+Sat Aug 16 10:34:49 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * modules/input/imcedilla.c: Make the list of default
+       languages more comprehensive. (Suggestion of
+       Fco. Javier F. Serrador)
+
+Sat Aug  9 12:47:11 2003  Owen Taylor  <otaylor@redhat.com>
+
+       * gdk/gdk.c (gdk_arg_context_parse): Fix broken 
+       parentheses when skipping args.
+
 Sat Aug 16 16:22:23 2003  Kristian Rietveld  <kris@gtk.org>
 
        Fix major bug in row ref handling, so the new combo box
index 0835aba5124100c82c52748b657f55b32ca0882a..266f594cffb56e276a6edcb9c43fae8c752f1640 100644 (file)
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -109,7 +109,7 @@ gdk_arg_context_parse (GdkArgContext *context, gint *argc, gchar ***argv)
        {
          char *arg;
          
-         if (!(*argv)[i][0] == '-' && (*argv)[i][1] == '-')
+         if (!((*argv)[i][0] == '-' && (*argv)[i][1] == '-'))
            continue;
          
          arg = (*argv)[i] + 2;
index 34c2336ba23c82d5ac687812649307deadc12b89..3c76b686d05663cee28a19baa0e211fd2822e768 100644 (file)
@@ -90,7 +90,7 @@ static const GtkIMContextInfo cedilla_info = {
   N_("Cedilla"),                   /* Human readable name */
   "gtk+",                         /* Translation domain */
    GTK_LOCALEDIR,                 /* Dir for bindtextdomain (not strictly needed for "gtk+") */
-  "fr:pt"                         /* Languages for which this module is the default */
+  "az:ca:co:fr:gv:oc:pt:sq:tr:wa"  /* Languages for which this module is the default */
 };
 
 static const GtkIMContextInfo *info_list[] = {