diff options
author | Tom Hacohen <tom@stosb.com> | 2016-03-09 15:47:28 +0000 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2016-03-09 16:09:14 +0000 |
commit | 4f949a2757b6332306264d7f126b15ba7bfd37d4 (patch) | |
tree | ec3a3aacfe34b2b3e75f3fc4d85531f6f4957c9d /src/lib/emotion/emotion_smart.c | |
parent | df83edaeb6b10324868f28e8f1910147ba22e5e5 (diff) |
Automatic migration to the new eo_add syntax.
Diffstat (limited to '')
-rw-r--r-- | src/lib/emotion/emotion_smart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/emotion/emotion_smart.c b/src/lib/emotion/emotion_smart.c index d0b0f327f8..5e7afa29de 100644 --- a/src/lib/emotion/emotion_smart.c +++ b/src/lib/emotion/emotion_smart.c | |||
@@ -236,7 +236,7 @@ EAPI Evas_Object * | |||
236 | emotion_object_add(Evas *evas) | 236 | emotion_object_add(Evas *evas) |
237 | { | 237 | { |
238 | Evas_Object *e; | 238 | Evas_Object *e; |
239 | e = eo_add(MY_CLASS, evas); | 239 | eo_add(&e, MY_CLASS, evas); |
240 | return e; | 240 | return e; |
241 | } | 241 | } |
242 | 242 | ||