aboutsummaryrefslogtreecommitdiff
path: root/src/ui/chat_entry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/chat_entry.c')
-rw-r--r--src/ui/chat_entry.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ui/chat_entry.c b/src/ui/chat_entry.c
index 99f03cc..3c9461e 100644
--- a/src/ui/chat_entry.c
+++ b/src/ui/chat_entry.c
@@ -34,8 +34,6 @@ ui_chat_entry_new(MESSENGER_Application *app)
34{ 34{
35 UI_CHAT_ENTRY_Handle* handle = g_malloc(sizeof(UI_CHAT_ENTRY_Handle)); 35 UI_CHAT_ENTRY_Handle* handle = g_malloc(sizeof(UI_CHAT_ENTRY_Handle));
36 36
37 handle->joining = bindings_create();
38
39 handle->chat = ui_chat_new(app); 37 handle->chat = ui_chat_new(app);
40 handle->builder = gtk_builder_new_from_resource( 38 handle->builder = gtk_builder_new_from_resource(
41 application_get_resource_path(app, "ui/chat_entry.ui") 39 application_get_resource_path(app, "ui/chat_entry.ui")
@@ -155,7 +153,5 @@ ui_chat_entry_delete(UI_CHAT_ENTRY_Handle *handle)
155 153
156 g_object_unref(handle->builder); 154 g_object_unref(handle->builder);
157 155
158 bindings_destroy(handle->joining);
159
160 g_free(handle); 156 g_free(handle);
161} 157}