formatting

DEAR CEDRIC: PLEASE LEARN HOW TO FORMAT YOUR CODE CORRECTLY. THANKS.


SVN revision: 79276
This commit is contained in:
Mike Blumenkrantz 2012-11-14 09:57:11 +00:00
parent 714185fd1a
commit cc887a265c
5 changed files with 120 additions and 112 deletions

View File

@ -37,5 +37,6 @@ e_alert_show(void)
fprintf(stderr, "PAUSE !\n");
pause();
}
return ;
return;
}

View File

@ -389,9 +389,11 @@ _e_alert_run(void)
case XCB_BUTTON_PRESS:
ret = _e_alert_handle_button_press(event);
break;
case XCB_KEY_PRESS:
ret = _e_alert_handle_key_press(event);
break;
case XCB_EXPOSE:
{
xcb_expose_event_t *ev;
@ -404,6 +406,7 @@ _e_alert_run(void)
break;
}
default:
break;
}
@ -517,7 +520,8 @@ _e_alert_draw_title(void)
xcb_image_text_8(conn, strlen(title), win, gc, x, y, title);
}
struct {
struct
{
int signal;
const char *name;
} signal_name[5] = {
@ -561,7 +565,6 @@ _e_alert_draw_text(void)
"\n"
"Please compile latest svn E17 and EFL with\n"
"-g and -ggdb3 in your CFLAGS.\n", pid);
}
}
else
@ -661,3 +664,4 @@ _e_alert_draw_button_text(void)
xcb_image_text_8(conn, strlen(str2), btn2, gc, x, (10 + fa), str2);
}

View File

@ -54,6 +54,7 @@ _e_write_safe_int(int fd, const char *buf, size_t size)
}
}
}
#endif
/* a tricky little devil, requires e and it's libs to be built
@ -120,3 +121,4 @@ e_sigabrt_act(int x __UNUSED__, siginfo_t *info __UNUSED__, void *data __UNUSED_
ecore_x_sync();
e_alert_show();
}

View File

@ -497,7 +497,7 @@ main(int argc, char **argv)
if (!really_know)
ptrace(PT_CONTINUE, child, NULL, back);
#endif
continue ;
continue;
}
#ifdef HAVE_SYS_PTRACE_H
if (!really_know)

View File

@ -88,3 +88,4 @@ _e_startup_event_cb(void *data, int ev_type __UNUSED__, void *ev __UNUSED__)
_e_startup();
return ECORE_CALLBACK_PASS_ON;
}