mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 11:20:12 +00:00
Initialize private structure
This commit is contained in:
parent
7c140feb6b
commit
0fa0e653d5
@ -1565,8 +1565,12 @@ _gtk_folder_class_init (GtkFolderClass *class)
|
|||||||
static void
|
static void
|
||||||
_gtk_folder_init (GtkFolder *folder)
|
_gtk_folder_init (GtkFolder *folder)
|
||||||
{
|
{
|
||||||
GtkFolderPrivate *priv = folder->priv;
|
GtkFolderPrivate *priv;
|
||||||
|
|
||||||
|
folder->priv = G_TYPE_INSTANCE_GET_PRIVATE (folder,
|
||||||
|
GTK_TYPE_FOLDER,
|
||||||
|
GtkFolderPrivate);
|
||||||
|
priv = folder->priv;
|
||||||
priv->children = g_hash_table_new_full (g_file_hash,
|
priv->children = g_hash_table_new_full (g_file_hash,
|
||||||
(GEqualFunc) g_file_equal,
|
(GEqualFunc) g_file_equal,
|
||||||
(GDestroyNotify) g_object_unref,
|
(GDestroyNotify) g_object_unref,
|
||||||
|
Loading…
Reference in New Issue
Block a user