aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-conversation-gtk_history.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/gnunet-conversation-gtk_history.c')
-rw-r--r--src/conversation/gnunet-conversation-gtk_history.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/conversation/gnunet-conversation-gtk_history.c b/src/conversation/gnunet-conversation-gtk_history.c
index 3d1de32c..5956b611 100644
--- a/src/conversation/gnunet-conversation-gtk_history.c
+++ b/src/conversation/gnunet-conversation-gtk_history.c
@@ -17,17 +17,12 @@
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20
21
22
23/** 20/**
24 * @file src/conversation/gnunet-conversation-gtk_history.c 21 * @file src/conversation/gnunet-conversation-gtk_history.c
25 * @brief 22 * @brief
26 * @author yids 23 * @author yids
27 * @author hark 24 * @author hark
28 */ 25 */
29
30#include "gnunet-conversation-gtk_common.h"
31#include "gnunet-conversation-gtk.h" 26#include "gnunet-conversation-gtk.h"
32 27
33 28
@@ -101,11 +96,11 @@ extern void
101GNUNET_CONVERSATION_GTK_history_init(){ 96GNUNET_CONVERSATION_GTK_history_init(){
102 // call history 97 // call history
103 history_liststore = 98 history_liststore =
104 GTK_LIST_STORE (get_object ("gnunet_conversation_gtk_history_liststore")); 99 GTK_LIST_STORE (GCG_get_main_window_object ("gnunet_conversation_gtk_history_liststore"));
105 history_treeview = 100 history_treeview =
106 GTK_TREE_VIEW (get_object ("gnunet_conversation_gtk_history_treeview")); 101 GTK_TREE_VIEW (GCG_get_main_window_object ("gnunet_conversation_gtk_history_treeview"));
107 history_treestore = 102 history_treestore =
108 GTK_TREE_STORE (get_object ("gnunet_conversation_gtk_history_treestore")); 103 GTK_TREE_STORE (GCG_get_main_window_object ("gnunet_conversation_gtk_history_treestore"));
109 history_treemodel = GTK_TREE_MODEL (history_treestore); 104 history_treemodel = GTK_TREE_MODEL (history_treestore);
110 105
111} 106}