forked from AuroraMiddleware/gtk
text buffer: Fix compiler warnings
Fix warnings due to -Wdeclaration-after-statement and -Wshadow.
This commit is contained in:
parent
a111f6ee23
commit
5dc440295e
@ -5792,7 +5792,7 @@ gtk_text_btree_rebalance (GtkTextBTree *tree,
|
|||||||
GtkTextBTreeNode *other;
|
GtkTextBTreeNode *other;
|
||||||
GtkTextBTreeNode *halfwaynode = NULL; /* Initialization needed only */
|
GtkTextBTreeNode *halfwaynode = NULL; /* Initialization needed only */
|
||||||
GtkTextLine *halfwayline = NULL; /* to prevent cc warnings. */
|
GtkTextLine *halfwayline = NULL; /* to prevent cc warnings. */
|
||||||
int total_children, first_children, i;
|
int total_children, first_children;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Too few children for this GtkTextBTreeNode. If this is the root then,
|
* Too few children for this GtkTextBTreeNode. If this is the root then,
|
||||||
@ -5861,46 +5861,46 @@ gtk_text_btree_rebalance (GtkTextBTree *tree,
|
|||||||
}
|
}
|
||||||
if (node->level == 0)
|
if (node->level == 0)
|
||||||
{
|
{
|
||||||
GtkTextLine *line;
|
GtkTextLine *line2;
|
||||||
|
|
||||||
for (line = node->children.line, i = 1;
|
for (line2 = node->children.line, i = 1;
|
||||||
line->next != NULL;
|
line2->next != NULL;
|
||||||
line = line->next, i++)
|
line2 = line2->next, i++)
|
||||||
{
|
{
|
||||||
if (i == first_children)
|
if (i == first_children)
|
||||||
{
|
{
|
||||||
halfwayline = line;
|
halfwayline = line2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
line->next = other->children.line;
|
line2->next = other->children.line;
|
||||||
while (i <= first_children)
|
while (i <= first_children)
|
||||||
{
|
{
|
||||||
halfwayline = line;
|
halfwayline = line2;
|
||||||
line = line->next;
|
line2 = line2->next;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
GtkTextBTreeNode *child;
|
GtkTextBTreeNode *child2;
|
||||||
|
|
||||||
for (child = node->children.node, i = 1;
|
for (child2 = node->children.node, i = 1;
|
||||||
child->next != NULL;
|
child2->next != NULL;
|
||||||
child = child->next, i++)
|
child2 = child2->next, i++)
|
||||||
{
|
{
|
||||||
if (i <= first_children)
|
if (i <= first_children)
|
||||||
{
|
{
|
||||||
if (i == first_children)
|
if (i == first_children)
|
||||||
{
|
{
|
||||||
halfwaynode = child;
|
halfwaynode = child2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
child->next = other->children.node;
|
child2->next = other->children.node;
|
||||||
while (i <= first_children)
|
while (i <= first_children)
|
||||||
{
|
{
|
||||||
halfwaynode = child;
|
halfwaynode = child2;
|
||||||
child = child->next;
|
child2 = child2->next;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -543,8 +543,8 @@ gtk_text_buffer_deserialize (GtkTextBuffer *register_buffer,
|
|||||||
gsize length,
|
gsize length,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
GList *formats;
|
GList *formats;
|
||||||
GList *list;
|
GList *l;
|
||||||
|
|
||||||
g_return_val_if_fail (GTK_IS_TEXT_BUFFER (register_buffer), FALSE);
|
g_return_val_if_fail (GTK_IS_TEXT_BUFFER (register_buffer), FALSE);
|
||||||
g_return_val_if_fail (GTK_IS_TEXT_BUFFER (content_buffer), FALSE);
|
g_return_val_if_fail (GTK_IS_TEXT_BUFFER (content_buffer), FALSE);
|
||||||
@ -554,12 +554,11 @@ gtk_text_buffer_deserialize (GtkTextBuffer *register_buffer,
|
|||||||
g_return_val_if_fail (length > 0, FALSE);
|
g_return_val_if_fail (length > 0, FALSE);
|
||||||
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
||||||
|
|
||||||
formats = g_object_get_qdata (G_OBJECT (register_buffer),
|
formats = g_object_get_qdata (G_OBJECT (register_buffer), deserialize_quark ());
|
||||||
deserialize_quark ());
|
|
||||||
|
|
||||||
for (list = formats; list; list = g_list_next (list))
|
for (l = formats; l; l = l->next)
|
||||||
{
|
{
|
||||||
GtkRichTextFormat *fmt = list->data;
|
GtkRichTextFormat *fmt = l->data;
|
||||||
|
|
||||||
if (fmt->atom == format)
|
if (fmt->atom == format)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user