Kaydet (Commit) 1ed9cad6 authored tarafından Enrico Tröger's avatar Enrico Tröger

Removed compiler warning.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1069 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 978de6fe
......@@ -23,6 +23,7 @@
src/sciwrappers.h:
Fixed broken overtype update in the statusbar.
Removed unused field do_overwrite in document struct.
* src/msgwindow.c: Removed compiler warning.
2006-12-07 Frank Lanitz <frank@frank.uvena.de>
......
......@@ -271,10 +271,6 @@ on_message_treeview_clear_activate (GtkMenuItem *menuitem,
switch (GPOINTER_TO_INT(user_data))
{
case MSG_STATUS:
store = msgwindow.store_status;
break;
case MSG_MESSAGE:
gtk_widget_set_sensitive(lookup_widget(app->window, "next_message1"), FALSE);
store = msgwindow.store_msg;
......@@ -284,6 +280,9 @@ on_message_treeview_clear_activate (GtkMenuItem *menuitem,
gtk_widget_set_sensitive(build_get_menu_items(-1)->item_next_error, FALSE);
store = msgwindow.store_compiler;
break;
default: // MSG_STATUS
store = msgwindow.store_status;
}
gtk_list_store_clear(store);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment