summaryrefslogtreecommitdiff
path: root/src/lib/eo/eo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/eo/eo.c')
-rw-r--r--src/lib/eo/eo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c
index 1ce4a56f9d..1bde32255a 100644
--- a/src/lib/eo/eo.c
+++ b/src/lib/eo/eo.c
@@ -456,8 +456,8 @@ eo_class_get(const Eo *obj_id)
{
if (_eo_is_a_class(obj_id))
{
- EO_CLASS_POINTER_RETURN_VAL(obj_id, _klass, NULL);
- return obj_id;
+ /* FIXME: Actually have a class class. */
+ return NULL;
}
EO_OBJ_POINTER_RETURN_VAL(obj_id, obj, NULL);
@@ -474,8 +474,8 @@ eo_class_name_get(const Eo *obj_id)
if (_eo_is_a_class(obj_id))
{
- EO_CLASS_POINTER_RETURN_VAL(obj_id, _klass, NULL);
- klass = _klass;
+ /* FIXME: Actually have a class class. */
+ return "Class";
}
else
{