fix what seems to be a big memory leaks in SetPageImage()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25305 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -430,17 +430,18 @@ bool wxNotebook::SetPageImage( size_t page, int image )
|
|||||||
{
|
{
|
||||||
/* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
|
/* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
|
||||||
|
|
||||||
GList *child = gtk_container_children(GTK_CONTAINER(nb_page->m_box));
|
GList *children = gtk_container_children(GTK_CONTAINER(nb_page->m_box));
|
||||||
while (child)
|
for ( child = children; child; child = child->next )
|
||||||
{
|
{
|
||||||
if (GTK_IS_PIXMAP(child->data))
|
if (GTK_IS_PIXMAP(child->data))
|
||||||
{
|
{
|
||||||
pixmapwid = GTK_WIDGET(child->data);
|
pixmapwid = GTK_WIDGET(child->data);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
child = child->next;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
g_list_free(children);
|
||||||
|
|
||||||
/* We should have the pixmap widget now */
|
/* We should have the pixmap widget now */
|
||||||
wxASSERT(pixmapwid != NULL);
|
wxASSERT(pixmapwid != NULL);
|
||||||
|
|
||||||
|
@@ -430,17 +430,18 @@ bool wxNotebook::SetPageImage( size_t page, int image )
|
|||||||
{
|
{
|
||||||
/* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
|
/* Case 2) or 4). There is already an image in the gtkhbox. Let's find it */
|
||||||
|
|
||||||
GList *child = gtk_container_children(GTK_CONTAINER(nb_page->m_box));
|
GList *children = gtk_container_children(GTK_CONTAINER(nb_page->m_box));
|
||||||
while (child)
|
for ( child = children; child; child = child->next )
|
||||||
{
|
{
|
||||||
if (GTK_IS_PIXMAP(child->data))
|
if (GTK_IS_PIXMAP(child->data))
|
||||||
{
|
{
|
||||||
pixmapwid = GTK_WIDGET(child->data);
|
pixmapwid = GTK_WIDGET(child->data);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
child = child->next;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
g_list_free(children);
|
||||||
|
|
||||||
/* We should have the pixmap widget now */
|
/* We should have the pixmap widget now */
|
||||||
wxASSERT(pixmapwid != NULL);
|
wxASSERT(pixmapwid != NULL);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user