]> Pileus Git - ~andy/gtk/commitdiff
print out the version and binary name in the header comment. Problem
authorJonathan Blandford <jrb@redhat.com>
Wed, 22 Dec 2004 06:26:57 +0000 (06:26 +0000)
committerJonathan Blandford <jrb@src.gnome.org>
Wed, 22 Dec 2004 06:26:57 +0000 (06:26 +0000)
Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>

        * gtk/queryimmodules.c (main): print out the version and binary
        name in the header comment.  Problem reported by Seth Nickell.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/queryimmodules.c

index f81b60be197198a2aa8dc4f6dbe8b12425cb9ae8..e66501d5a1ed391afd071bfd58c81903c37da5f4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/queryimmodules.c (main): print out the version and binary
+       name in the header comment.  Problem reported by Seth Nickell.
+
 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
index f81b60be197198a2aa8dc4f6dbe8b12425cb9ae8..e66501d5a1ed391afd071bfd58c81903c37da5f4 100644 (file)
@@ -1,3 +1,8 @@
+Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/queryimmodules.c (main): print out the version and binary
+       name in the header comment.  Problem reported by Seth Nickell.
+
 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
index f81b60be197198a2aa8dc4f6dbe8b12425cb9ae8..e66501d5a1ed391afd071bfd58c81903c37da5f4 100644 (file)
@@ -1,3 +1,8 @@
+Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/queryimmodules.c (main): print out the version and binary
+       name in the header comment.  Problem reported by Seth Nickell.
+
 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
index f81b60be197198a2aa8dc4f6dbe8b12425cb9ae8..e66501d5a1ed391afd071bfd58c81903c37da5f4 100644 (file)
@@ -1,3 +1,8 @@
+Wed Dec 22 01:24:01 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/queryimmodules.c (main): print out the version and binary
+       name in the header comment.  Problem reported by Seth Nickell.
+
 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkliststore.c (gtk_list_store_sort_iter_changed): Pass a
index 432b9d90c0cb4c68fec8e6c00cc018f19fe9cb0f..c83572a0bb7a8770eb4b74807ce20b0a4e404aa2 100644 (file)
@@ -40,6 +40,7 @@
 #include <pango/pango-utils.h>
 #include "gtk/gtkrc.h"
 #include "gtk/gtkimmodule.h"
+#include "gtk/gtkversion.h"
 
 static char *
 escape_string (const char *str)
@@ -159,8 +160,12 @@ int main (int argc, char **argv)
   gboolean error = FALSE;
 
   g_printf ("# GTK+ Input Method Modules file\n"
-         "# Automatically generated file, do not edit\n"
-         "#\n");
+           "# Automatically generated file, do not edit\n"
+           "# Created by %s from gtk+-%d.%d.%d\n"
+           "#\n",
+           argv[0],
+           GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
+
 
   if (argc == 1)               /* No arguments given */
     {