elm: Reviewed bubble and debug.

SVN revision: 67980
This commit is contained in:
Daniel Juyung Seo 2012-02-15 12:24:10 +00:00
parent 64c3602b15
commit e4612a1b0f
3 changed files with 5 additions and 3 deletions

View File

@ -178,7 +178,7 @@ EAPI extern Elm_Version *elm_version;
#include <elm_box.h>
// Daniel Juyung Seo
#include <elm_bubble.h> // <-- up to here (1.0 review)
#include <elm_bubble.h> // comments in elm_bubble.h
#include <elm_button.h>
#include <elm_cache.h>
#include <elm_calendar.h>
@ -189,7 +189,7 @@ EAPI extern Elm_Version *elm_version;
#include <elm_config.h>
#include <elm_conform.h>
#include <elm_cursor.h>
#include <elm_debug.h>
#include <elm_debug.h> // OK
#include <elm_diskselector.h>
// Chuneon Park

View File

@ -77,6 +77,7 @@ EAPI Evas_Object *elm_bubble_add(Evas_Object *parent);
* @li "bottom_left"
* @li "bottom_right"
*/
// XXX: use enum for corner parameter instead of const char *
EAPI void elm_bubble_corner_set(Evas_Object *obj, const char *corner);
/**
@ -87,6 +88,7 @@ EAPI void elm_bubble_corner_set(Evas_Object *obj, const
*
* This function gets the selected corner of the bubble.
*/
// XXX: use enum for return value instead of const char *
EAPI const char *elm_bubble_corner_get(const Evas_Object *obj);
/**

View File

@ -1,6 +1,6 @@
/**
* @defgroup Debug Debug
* don't use it unless you are sure
* Don't use it unless you are sure.
*
* @{
*/