demos/gtk-demo/stock_browser.c (id_to_macro): make the uppercasing work. (#59550)

This commit is contained in:
Matthias Clasen
2001-09-14 21:21:28 +00:00
parent 0599df8a80
commit 33bb0bebf7
8 changed files with 36 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make
the uppercasing work. (#59550)
2001-09-14 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_error.png:

View File

@@ -1,3 +1,8 @@
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make
the uppercasing work. (#59550)
2001-09-14 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_error.png:

View File

@@ -1,3 +1,8 @@
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make
the uppercasing work. (#59550)
2001-09-14 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_error.png:

View File

@@ -1,3 +1,8 @@
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make
the uppercasing work. (#59550)
2001-09-14 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_error.png:

View File

@@ -1,3 +1,8 @@
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make
the uppercasing work. (#59550)
2001-09-14 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_error.png:

View File

@@ -1,3 +1,8 @@
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make
the uppercasing work. (#59550)
2001-09-14 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_error.png:

View File

@@ -1,3 +1,8 @@
Fri Sep 14 22:26:01 2001 Matthias Clasen <matthiasc@poet.de>
* demos/gtk-demo/stock_browser.c (id_to_macro): make
the uppercasing work. (#59550)
2001-09-14 Jakub Steiner <jimmac@ximian.com>
* gtk/stock-icons/dialog_error.png:

View File

@@ -115,13 +115,12 @@ id_to_macro (const gchar *id)
p = macro->str;
while (*p)
{
*p = g_ascii_toupper (*p);
if (*p == '-')
*p = '_';
++p;
}
g_ascii_strup (macro->str);
return g_string_free (macro, FALSE);
}