aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-memo-list-selector.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-02-19 03:50:01 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-02-19 03:50:01 +0800
commit92a3fce79c8acb244bcaf23d22e38e3f21f80c36 (patch)
tree77ae0b13721c71f4fa4dc0c914048c29f34062dc /calendar/gui/e-memo-list-selector.h
parent61e2e0005520a20913d8271b5bc80ca94a594671 (diff)
downloadgsoc2013-evolution-92a3fce79c8acb244bcaf23d22e38e3f21f80c36.tar
gsoc2013-evolution-92a3fce79c8acb244bcaf23d22e38e3f21f80c36.tar.gz
gsoc2013-evolution-92a3fce79c8acb244bcaf23d22e38e3f21f80c36.tar.bz2
gsoc2013-evolution-92a3fce79c8acb244bcaf23d22e38e3f21f80c36.tar.lz
gsoc2013-evolution-92a3fce79c8acb244bcaf23d22e38e3f21f80c36.tar.xz
gsoc2013-evolution-92a3fce79c8acb244bcaf23d22e38e3f21f80c36.tar.zst
gsoc2013-evolution-92a3fce79c8acb244bcaf23d22e38e3f21f80c36.zip
EMemoListSelector: Inherit from EClientSelector.
Use e_client_selector_get_client() to obtain an EClient.
Diffstat (limited to 'calendar/gui/e-memo-list-selector.h')
-rw-r--r--calendar/gui/e-memo-list-selector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/e-memo-list-selector.h b/calendar/gui/e-memo-list-selector.h
index 532fd312c6..e29bfb3133 100644
--- a/calendar/gui/e-memo-list-selector.h
+++ b/calendar/gui/e-memo-list-selector.h
@@ -54,16 +54,16 @@ typedef struct _EMemoListSelectorClass EMemoListSelectorClass;
typedef struct _EMemoListSelectorPrivate EMemoListSelectorPrivate;
struct _EMemoListSelector {
- ESourceSelector parent;
+ EClientSelector parent;
EMemoListSelectorPrivate *priv;
};
struct _EMemoListSelectorClass {
- ESourceSelectorClass parent_class;
+ EClientSelectorClass parent_class;
};
GType e_memo_list_selector_get_type (void);
-GtkWidget * e_memo_list_selector_new (ESourceRegistry *registry);
+GtkWidget * e_memo_list_selector_new (EClientCache *client_cache);
G_END_DECLS