Rename declared definition OVERFLOW to OVER_FLOW.

(conflicted w/ OVERFLOW which is defined in math.h).



SVN revision: 50237
This commit is contained in:
Christopher Michael 2010-07-13 22:46:17 +00:00
parent 4e6f3e0e7b
commit 5cd823d6ee
1 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
#include "e_mod_comp_update.h"
#include "config.h"
#define OVERFLOW 4
#define OVER_FLOW 4
//////////////////////////////////////////////////////////////////////////
//
@ -627,7 +627,7 @@ _e_mod_comp_cb_update(E_Comp *c)
printf("NOCOMP!\n");
printf("kill comp %x\n", cw->win);
c->nocomp = 1;
c->render_overflow = OVERFLOW;
c->render_overflow = OVER_FLOW;
ecore_x_window_hide(c->win);
cw->nocomp = 1;
if (cw->redirected)
@ -695,7 +695,7 @@ _e_mod_comp_cb_update(E_Comp *c)
{
printf("COMP!\n");
c->nocomp = 0;
c->render_overflow = OVERFLOW;
c->render_overflow = OVER_FLOW;
ecore_x_window_show(c->win);
EINA_INLIST_FOREACH(c->wins, cw)
{
@ -786,7 +786,7 @@ _e_mod_comp_render_queue(E_Comp *c)
{
if (c->render_animator)
{
c->render_overflow = OVERFLOW;
c->render_overflow = OVER_FLOW;
return;
}
c->render_animator = ecore_animator_add(_e_mod_comp_cb_animator, c);