From 99d9556902279ce55280febc1cbf39980efd11df Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Wed, 8 Feb 2006 11:43:02 +0000 Subject: Use guint for 1-bit bitfield. Remove unused var Remove unused vars Rename 2006-02-08 Kjartan Maraas * e-config.c: Use guint for 1-bit bitfield. * e-icon-factory.c: (load_icon): Remove unused var * e-import.c: (ep_init), (ep_finalise): Remove unused vars * e-plugin.c: (e_plugin_register_type): Rename a var * e-plugin.h: guint for 1-bit bitfield * e-popup.c: (ep_finalise): Add comment. * e-profile-event.c: Remove unused prototype * e-text-event-processor-emacs-like.c: (e_text_event_processor_emacs_like_event): Add comment about a compiler warning from the Intel compiler. svn path=/trunk/; revision=31446 --- e-util/e-text-event-processor-emacs-like.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'e-util/e-text-event-processor-emacs-like.c') diff --git a/e-util/e-text-event-processor-emacs-like.c b/e-util/e-text-event-processor-emacs-like.c index 5fa248fe75..41bfcf4545 100644 --- a/e-util/e-text-event-processor-emacs-like.c +++ b/e-util/e-text-event-processor-emacs-like.c @@ -133,6 +133,12 @@ e_text_event_processor_emacs_like_event (ETextEventProcessor *tep, ETextEventPro ETextEventProcessorCommand command; ETextEventProcessorEmacsLike *tep_el = E_TEXT_EVENT_PROCESSOR_EMACS_LIKE(tep); command.action = E_TEP_NOP; + /* Warning from the Intel compiler here: + * e-text-event-processor-emacs-like.c(136): warning #589: transfer of control bypasses initialization of: + * variable "key" (declared at line 194) + * switch (event->type) { + * ^ + */ switch (event->type) { case GDK_BUTTON_PRESS: if (event->button.button == 1) { -- cgit v1.2.3