diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-05-20 02:48:11 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-05-20 02:48:11 +0800 |
commit | 6289d5e8af55efe139fa3981e11684b8a0784549 (patch) | |
tree | d93242f6860106e92b257a3fda611ac7a38b6d9e /libempathy-gtk/Makefile.am | |
parent | 0fea8f6e1fbabbbcf29615b838ded6902d80b32f (diff) | |
download | gsoc2013-empathy-6289d5e8af55efe139fa3981e11684b8a0784549.tar gsoc2013-empathy-6289d5e8af55efe139fa3981e11684b8a0784549.tar.gz gsoc2013-empathy-6289d5e8af55efe139fa3981e11684b8a0784549.tar.bz2 gsoc2013-empathy-6289d5e8af55efe139fa3981e11684b8a0784549.tar.lz gsoc2013-empathy-6289d5e8af55efe139fa3981e11684b8a0784549.tar.xz gsoc2013-empathy-6289d5e8af55efe139fa3981e11684b8a0784549.tar.zst gsoc2013-empathy-6289d5e8af55efe139fa3981e11684b8a0784549.zip |
Split GossipContactList into two objects: GossipContactListStore
2007-05-19 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/gossip-contact-list-store.c:
* libempathy-gtk/gossip-preferences.c:
* libempathy-gtk/gossip-contact-list-store.h:
* libempathy-gtk/gossip-contact-list.c:
* libempathy-gtk/gossip-contact-list.h:
* libempathy-gtk/empathy-main-window.c:
* libempathy-gtk/gossip-contact-list-model.c:
* libempathy-gtk/gossip-contact-list-model.h:
* libempathy-gtk/Makefile.am:
* libempathy/empathy-marshal.list: Split GossipContactList into
two objects: GossipContactListStore inheriting from GtkTreeStore and
GossipContactListView inheriting from GtkTreeView. This makes
easier to build new UI widgets reusing the GtkTreeModel.
svn path=/trunk/; revision=74
Diffstat (limited to 'libempathy-gtk/Makefile.am')
-rw-r--r-- | libempathy-gtk/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am index 6bc6c65cd..a9ea7a7ca 100644 --- a/libempathy-gtk/Makefile.am +++ b/libempathy-gtk/Makefile.am @@ -9,6 +9,8 @@ noinst_LTLIBRARIES = libempathy-gtk.la libempathy_gtk_la_SOURCES = \ ephy-spinner.c ephy-spinner.h \ empathy-images.h \ + gossip-contact-list-store.c gossip-contact-list-store.h \ + gossip-contact-list-view.c gossip-contact-list-view.h \ empathy-main-window.c empathy-main-window.h \ empathy-status-icon.c empathy-status-icon.h \ gossip-accounts-dialog.c gossip-accounts-dialog.h \ @@ -19,7 +21,6 @@ libempathy_gtk_la_SOURCES = \ gossip-cell-renderer-text.c gossip-cell-renderer-text.h \ gossip-spell.c gossip-spell.h \ gossip-contact-groups.c gossip-contact-groups.h \ - gossip-contact-list.c gossip-contact-list.h \ gossip-preferences.c gossip-preferences.h \ gossip-theme-manager.c gossip-theme-manager.h \ gossip-chat-window.c gossip-chat-window.h \ |