fix minor oops

This commit is contained in:
Charles Kerr 2007-06-23 00:00:19 +00:00
parent ab85deaf51
commit 496cf6d63a
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ get_or_create_tag (GtkTextTagTable * table, const char * key)
if (!tag) {
tag = gtk_text_tag_new (key);
gtk_text_tag_table_add (table, tag);
g_object_unref (tag); // table refs it
g_object_unref (tag); /* table refs it */
}
return tag;