Fix includes in gtkassistant.c

Also fix a bad case in gtk_assistant_accessible_get_n_children.
This commit is contained in:
Matthias Clasen 2011-02-17 12:35:07 -05:00
parent 7bddfb5790
commit 13d717e2ce

View File

@ -62,7 +62,7 @@
#include "gtkassistant.h"
#include "gtkaccessible.h"
#include "gtkaccessibleprivate.h"
#include "gtkbutton.h"
#include "gtkhbox.h"
#include "gtkhbbox.h"
@ -2511,7 +2511,7 @@ gtk_assistant_accessible_get_n_children (AtkObject *accessible)
if (widget == NULL)
return 0;
return g_list_length (GTK_ASSISTANT (accessible)->priv->pages) + 1;
return g_list_length (GTK_ASSISTANT (widget)->priv->pages) + 1;
}
static AtkObject *