GTK2: gtk_container_children -> gtk_container_get_children
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37294 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -475,7 +475,7 @@ 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 *child = gtk_container_get_children(GTK_CONTAINER(nb_page->m_box));
|
||||||
while (child)
|
while (child)
|
||||||
{
|
{
|
||||||
if (GTK_IS_PIXMAP(child->data))
|
if (GTK_IS_PIXMAP(child->data))
|
||||||
@@ -758,7 +758,7 @@ int wxNotebook::HitTest(const wxPoint& pt, long *flags) const
|
|||||||
{
|
{
|
||||||
GtkWidget *pixmap = NULL;
|
GtkWidget *pixmap = NULL;
|
||||||
|
|
||||||
GList *children = gtk_container_children(GTK_CONTAINER(box));
|
GList *children = gtk_container_get_children(GTK_CONTAINER(box));
|
||||||
for ( GList *child = children; child; child = child->next )
|
for ( GList *child = children; child; child = child->next )
|
||||||
{
|
{
|
||||||
if ( GTK_IS_PIXMAP(child->data) )
|
if ( GTK_IS_PIXMAP(child->data) )
|
||||||
|
@@ -714,7 +714,7 @@ long wxTreeCtrl::GetChild(long item) const {
|
|||||||
GtkTreeItem *next = NULL;
|
GtkTreeItem *next = NULL;
|
||||||
|
|
||||||
p = findGtkTreeItem(item);
|
p = findGtkTreeItem(item);
|
||||||
GList *list = gtk_container_children(GTK_CONTAINER(p));
|
GList *list = gtk_container_get_children(GTK_CONTAINER(p));
|
||||||
next = GTK_TREE_ITEM(list->data);
|
next = GTK_TREE_ITEM(list->data);
|
||||||
|
|
||||||
if (next != NULL)
|
if (next != NULL)
|
||||||
@@ -726,7 +726,7 @@ long wxTreeCtrl::GetChild(long item) const {
|
|||||||
long wxTreeCtrl::GetFirstVisibleItem(void) const {
|
long wxTreeCtrl::GetFirstVisibleItem(void) const {
|
||||||
GtkTreeItem *next = NULL;
|
GtkTreeItem *next = NULL;
|
||||||
|
|
||||||
GList *list = gtk_container_children(GTK_CONTAINER(m_anchor));
|
GList *list = gtk_container_get_children(GTK_CONTAINER(m_anchor));
|
||||||
next = GTK_TREE_ITEM(list->data);
|
next = GTK_TREE_ITEM(list->data);
|
||||||
// gtk_container_foreach(GTK_CONTAINER(m_anchor), gtk_treectrl_next_visible_callback, &next);
|
// gtk_container_foreach(GTK_CONTAINER(m_anchor), gtk_treectrl_next_visible_callback, &next);
|
||||||
|
|
||||||
@@ -741,7 +741,7 @@ long wxTreeCtrl::GetNextVisibleItem(long item) const {
|
|||||||
GtkTreeItem *next = NULL;
|
GtkTreeItem *next = NULL;
|
||||||
|
|
||||||
p = findGtkTreeItem(item);
|
p = findGtkTreeItem(item);
|
||||||
GList *list = gtk_container_children(GTK_CONTAINER(p));
|
GList *list = gtk_container_get_children(GTK_CONTAINER(p));
|
||||||
next = GTK_TREE_ITEM(list->data);
|
next = GTK_TREE_ITEM(list->data);
|
||||||
// gtk_container_foreach(GTK_CONTAINER(p), gtk_treectrl_next_visible_callback, &next);
|
// gtk_container_foreach(GTK_CONTAINER(p), gtk_treectrl_next_visible_callback, &next);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user