diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-11-20 00:01:51 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-11-20 03:50:57 +0800 |
commit | f325f0b4f30bd83032deab75e4a38188dc6ab726 (patch) | |
tree | 04c2397b3cb4601f7444e82a8151e2d2336dac56 /mail/em-folder-tree-model.h | |
parent | 01b128727a35ea0b1c507f196be820b26bbedd75 (diff) | |
download | gsoc2013-evolution-f325f0b4f30bd83032deab75e4a38188dc6ab726.tar gsoc2013-evolution-f325f0b4f30bd83032deab75e4a38188dc6ab726.tar.gz gsoc2013-evolution-f325f0b4f30bd83032deab75e4a38188dc6ab726.tar.bz2 gsoc2013-evolution-f325f0b4f30bd83032deab75e4a38188dc6ab726.tar.lz gsoc2013-evolution-f325f0b4f30bd83032deab75e4a38188dc6ab726.tar.xz gsoc2013-evolution-f325f0b4f30bd83032deab75e4a38188dc6ab726.tar.zst gsoc2013-evolution-f325f0b4f30bd83032deab75e4a38188dc6ab726.zip |
Make EMFolderTreeModelStoreInfo private.
Also shorten the struct name to StoreInfo since it's private now.
Diffstat (limited to 'mail/em-folder-tree-model.h')
-rw-r--r-- | mail/em-folder-tree-model.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/mail/em-folder-tree-model.h b/mail/em-folder-tree-model.h index 35c8531fac..85fe1e714f 100644 --- a/mail/em-folder-tree-model.h +++ b/mail/em-folder-tree-model.h @@ -52,7 +52,6 @@ G_BEGIN_DECLS typedef struct _EMFolderTreeModel EMFolderTreeModel; typedef struct _EMFolderTreeModelClass EMFolderTreeModelClass; typedef struct _EMFolderTreeModelPrivate EMFolderTreeModelPrivate; -typedef struct _EMFolderTreeModelStoreInfo EMFolderTreeModelStoreInfo; enum { COL_STRING_DISPLAY_NAME, /* string that appears in the tree */ @@ -73,22 +72,6 @@ enum { NUM_COLUMNS }; -struct _EMFolderTreeModelStoreInfo { - CamelStore *store; - GtkTreeRowReference *row; - - /* CamelFolderInfo::full_name -> GtkTreeRowReference */ - GHashTable *full_hash; - - /* CamelStore signal handler IDs */ - gulong folder_created_handler_id; - gulong folder_deleted_handler_id; - gulong folder_renamed_handler_id; - gulong folder_info_stale_handler_id; - gulong folder_subscribed_handler_id; - gulong folder_unsubscribed_handler_id; -}; - struct _EMFolderTreeModel { GtkTreeStore parent; EMFolderTreeModelPrivate *priv; |