diff options
author | Cedric BAIL <cedric.bail@free.fr> | 2010-01-25 21:59:21 +0000 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2010-01-25 21:59:21 +0000 |
commit | 44193541f71101ee365afec23a9efdb901c4413f (patch) | |
tree | 5f0ad72829e91e9466cc54cd2671fc476c3c3971 /legacy/emotion/src | |
parent | 0e0534c564a1c020a4837a5009860a8f23f129a9 (diff) |
* ecore: Move ecore_job inside ecore.
Patch from Albin "Lutin" Tonnerre <albin.tonnerre@gmail.com>.
SVN revision: 45570
Diffstat (limited to '')
-rw-r--r-- | legacy/emotion/src/lib/emotion_private.h | 1 | ||||
-rw-r--r-- | legacy/emotion/src/lib/emotion_smart.c | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/legacy/emotion/src/lib/emotion_private.h b/legacy/emotion/src/lib/emotion_private.h index adf1f255d2..1af4079ebe 100644 --- a/legacy/emotion/src/lib/emotion_private.h +++ b/legacy/emotion/src/lib/emotion_private.h | |||
@@ -11,7 +11,6 @@ | |||
11 | 11 | ||
12 | #include <Evas.h> | 12 | #include <Evas.h> |
13 | #include <Ecore.h> | 13 | #include <Ecore.h> |
14 | #include <Ecore_Job.h> | ||
15 | #include <Ecore_Str.h> | 14 | #include <Ecore_Str.h> |
16 | #include <Emotion.h> | 15 | #include <Emotion.h> |
17 | 16 | ||
diff --git a/legacy/emotion/src/lib/emotion_smart.c b/legacy/emotion/src/lib/emotion_smart.c index ba733f2fbb..e724f8e47e 100644 --- a/legacy/emotion/src/lib/emotion_smart.c +++ b/legacy/emotion/src/lib/emotion_smart.c | |||
@@ -227,7 +227,7 @@ emotion_object_init(Evas_Object *obj, const char *module_filename) | |||
227 | sd->seek_pos = 0; | 227 | sd->seek_pos = 0; |
228 | sd->len = 0; | 228 | sd->len = 0; |
229 | 229 | ||
230 | ecore_job_init(); | 230 | ecore_init(); |
231 | 231 | ||
232 | if ((!sd->module) || (!sd->video)) | 232 | if ((!sd->module) || (!sd->video)) |
233 | { | 233 | { |
@@ -1313,7 +1313,7 @@ _smart_del(Evas_Object * obj) | |||
1313 | free(sd->ref.file); | 1313 | free(sd->ref.file); |
1314 | free(sd); | 1314 | free(sd); |
1315 | 1315 | ||
1316 | ecore_job_shutdown(); | 1316 | ecore_shutdown(); |
1317 | } | 1317 | } |
1318 | 1318 | ||
1319 | static void | 1319 | static void |