aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-chatrooms-window.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2009-04-16 20:29:44 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-04-16 20:29:44 +0800
commit8aa0b4901a0d0cd36385bce4577a356301384bc7 (patch)
tree2b07bbedcb1bdc0673a7e7f57e5ead7c9adb044f /src/empathy-chatrooms-window.c
parent851356115b580adae99f326d0c62567f6b049d8a (diff)
downloadgsoc2013-empathy-8aa0b4901a0d0cd36385bce4577a356301384bc7.tar
gsoc2013-empathy-8aa0b4901a0d0cd36385bce4577a356301384bc7.tar.gz
gsoc2013-empathy-8aa0b4901a0d0cd36385bce4577a356301384bc7.tar.bz2
gsoc2013-empathy-8aa0b4901a0d0cd36385bce4577a356301384bc7.tar.lz
gsoc2013-empathy-8aa0b4901a0d0cd36385bce4577a356301384bc7.tar.xz
gsoc2013-empathy-8aa0b4901a0d0cd36385bce4577a356301384bc7.tar.zst
gsoc2013-empathy-8aa0b4901a0d0cd36385bce4577a356301384bc7.zip
Remove unused edit-chatroom dialog from the UI file. gtk_builder_add_from_file creates all toplevel objects so the edit dialog popup in the same time as the manage chatroom dialog.
From: Xavier Claessens <xclaesse@gmail.com> svn path=/trunk/; revision=2874
Diffstat (limited to 'src/empathy-chatrooms-window.c')
-rw-r--r--src/empathy-chatrooms-window.c27
1 files changed, 2 insertions, 25 deletions
diff --git a/src/empathy-chatrooms-window.c b/src/empathy-chatrooms-window.c
index 5a829ceba..abd6447f6 100644
--- a/src/empathy-chatrooms-window.c
+++ b/src/empathy-chatrooms-window.c
@@ -437,21 +437,7 @@ chatrooms_window_model_get_selected (EmpathyChatroomsWindow *window)
static void
chatrooms_window_model_action_selected (EmpathyChatroomsWindow *window)
{
- EmpathyChatroom *chatroom;
- GtkTreeView *view;
- GtkTreeModel *model;
-
- view = GTK_TREE_VIEW (window->treeview);
- model = gtk_tree_view_get_model (view);
-
- chatroom = chatrooms_window_model_get_selected (window);
- if (!chatroom) {
- return;
- }
-
- //empathy_edit_chatroom_dialog_show (GTK_WINDOW (window->window), chatroom);
-
- g_object_unref (chatroom);
+ /* FIXME: This is still not implemented since Gossip fork */
}
static void
@@ -496,16 +482,7 @@ static void
chatrooms_window_button_edit_clicked_cb (GtkWidget *widget,
EmpathyChatroomsWindow *window)
{
- EmpathyChatroom *chatroom;
-
- chatroom = chatrooms_window_model_get_selected (window);
- if (!chatroom) {
- return;
- }
-
- //empathy_edit_chatroom_dialog_show (GTK_WINDOW (window->window), chatroom);
-
- g_object_unref (chatroom);
+ /* FIXME: This is still not implemented since Gossip fork */
}
static void