Use g_quark_from_static_string where possible

svn path=/trunk/; revision=21146
This commit is contained in:
Matthias Clasen 2008-08-18 00:14:17 +00:00
parent 828715fa3b
commit 50e94e86a0
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2008-08-16 Matthias Clasen <mclasen@redhat.com>
* gtk/gtksizegroup.c: Use g_quark_from_static_string() where possible.
2008-08-16 Matthias Clasen <mclasen@redhat.com>
* NEWS: Updates
2008-08-16 Torsten Schoenfeld <kaffeetisch@gmx.de>
* gdk/gdkwindow.c: Fix small issues in the documentation of

View File

@ -275,7 +275,7 @@ initialize_size_group_quarks (void)
if (!size_groups_quark)
{
size_groups_quark = g_quark_from_static_string (size_groups_tag);
visited_quark = g_quark_from_string (visited_tag);
visited_quark = g_quark_from_static_string (visited_tag);
}
}