moved include headers to correct location

This commit is contained in:
Joel Bodenmann 2013-10-27 16:39:42 +01:00
parent 98e7a40205
commit 1130f93af7
2 changed files with 11 additions and 8 deletions

View file

@ -279,15 +279,26 @@ bool_t gwinAttachListener(GListener *pl);
#if GWIN_NEED_BUTTON || defined(__DOXYGEN__) #if GWIN_NEED_BUTTON || defined(__DOXYGEN__)
#include "gwin/button.h" #include "gwin/button.h"
#endif #endif
#if GWIN_NEED_SLIDER || defined(__DOXYGEN__) #if GWIN_NEED_SLIDER || defined(__DOXYGEN__)
#include "gwin/slider.h" #include "gwin/slider.h"
#endif #endif
#if GWIN_NEED_CHECKBOX || defined(__DOXYGEN__) #if GWIN_NEED_CHECKBOX || defined(__DOXYGEN__)
#include "gwin/checkbox.h" #include "gwin/checkbox.h"
#endif #endif
#if GWIN_NEED_RADIO || defined(__DOXYGEN__) #if GWIN_NEED_RADIO || defined(__DOXYGEN__)
#include "gwin/radio.h" #include "gwin/radio.h"
#endif #endif
#if GWIN_NEED_LABEL || defined(__DOXYGEN__)
#include "gwin/label.h"
#endif
#if GWIN_NEED_LIST || defined(__DOXYGEN__)
#include "gwin/list.h"
#endif
#endif /* _GWIDGET_H */ #endif /* _GWIDGET_H */
/** @} */ /** @} */

View file

@ -820,14 +820,6 @@ extern "C" {
#include "gwin/image.h" #include "gwin/image.h"
#endif #endif
#if GWIN_NEED_LABEL || defined(__DOXYGEN__)
#include "gwin/label.h"
#endif
#if GWIN_NEED_LIST || defined(__DOXYGEN__)
#include "gwin/list.h"
#endif
#endif /* GFX_USE_GWIN */ #endif /* GFX_USE_GWIN */
#endif /* _GWIN_H */ #endif /* _GWIN_H */