Remove whitespace

SVN revision: 44958
This commit is contained in:
Sebastian Dransfeld 2010-01-07 19:27:06 +00:00
parent b0a1a778a1
commit 46b0282841
1 changed files with 21 additions and 21 deletions

View File

@ -1,37 +1,37 @@
#ifndef _ECORE_INPUT_PRIVATE_H #ifndef_ECORE_INPUT_PRIVATE_H
#define _ECORE_INPUT_PRIVATE_H #define_ECORE_INPUT_PRIVATE_H
extern int _ecore_input_evas_log_dom; externint _ecore_input_evas_log_dom;
#ifdef ECORE_INPUT_EVAS_DEFAULT_LOG_COLOR #ifdefECORE_INPUT_EVAS_DEFAULT_LOG_COLOR
# undef ECORE_INPUT_EVAS_DEFAULT_LOG_COLOR #undef ECORE_INPUT_EVAS_DEFAULT_LOG_COLOR
#endif #endif
#define ECORE_INPUT_EVAS_DEFAULT_LOG_COLOR EINA_COLOR_BLUE #defineECORE_INPUT_EVAS_DEFAULT_LOG_COLOR EINA_COLOR_BLUE
#ifdef ERR #ifdefERR
# undef ERR #undef ERR
#endif #endif
#define ERR(...) EINA_LOG_DOM_ERR(_ecore_input_evas_log_dom, __VA_ARGS__) #defineERR(...) EINA_LOG_DOM_ERR(_ecore_input_evas_log_dom, __VA_ARGS__)
#ifdef DBG #ifdefDBG
# undef DBG #undef DBG
#endif #endif
#define DBG(...) EINA_LOG_DOM_DBG(_ecore_input_evas_log_dom, __VA_ARGS__) #defineDBG(...) EINA_LOG_DOM_DBG(_ecore_input_evas_log_dom, __VA_ARGS__)
#ifdef INF #ifdefINF
# undef INF #undef INF
#endif #endif
#define INF(...) EINA_LOG_DOM_INFO(_ecore_input_evas_log_dom, __VA_ARGS__) #defineINF(...) EINA_LOG_DOM_INFO(_ecore_input_evas_log_dom, __VA_ARGS__)
#ifdef WRN #ifdefWRN
# undef WRN #undef WRN
#endif #endif
#define WRN(...) EINA_LOG_DOM_WARN(_ecore_input_evas_log_dom, __VA_ARGS__) #defineWRN(...) EINA_LOG_DOM_WARN(_ecore_input_evas_log_dom, __VA_ARGS__)
#ifdef CRIT #ifdefCRIT
# undef CRIT #undef CRIT
#endif #endif
#define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_input_evas_log_dom, __VA_ARGS__) #defineCRIT(...) EINA_LOG_DOM_CRIT(_ecore_input_evas_log_dom, __VA_ARGS__)
#endif #endif