From fdf72fa79597be073ca11f837409bbc625ed6cc8 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 10 Apr 2012 09:12:46 +0000 Subject: [PATCH] Eobj: eobj.h -> Eobj.h Thanks to vtorri. SVN revision: 69991 --- legacy/eobj/examples/access/inherit.c | 2 +- legacy/eobj/examples/access/inherit.h | 2 +- legacy/eobj/examples/access/main.c | 2 +- legacy/eobj/examples/access/simple.c | 2 +- legacy/eobj/examples/access/simple.h | 2 +- legacy/eobj/examples/constructors/main.c | 2 +- legacy/eobj/examples/constructors/mixin.c | 2 +- legacy/eobj/examples/constructors/mixin.h | 2 +- legacy/eobj/examples/constructors/simple.c | 2 +- legacy/eobj/examples/constructors/simple.h | 2 +- legacy/eobj/examples/constructors/simple2.c | 2 +- legacy/eobj/examples/constructors/simple2.h | 2 +- legacy/eobj/examples/constructors/simple3.c | 2 +- legacy/eobj/examples/constructors/simple3.h | 2 +- legacy/eobj/examples/constructors/simple4.c | 2 +- legacy/eobj/examples/constructors/simple4.h | 2 +- legacy/eobj/examples/evas/elw_box.c | 2 +- legacy/eobj/examples/evas/elw_box.h | 2 +- legacy/eobj/examples/evas/elw_boxedbutton.c | 2 +- legacy/eobj/examples/evas/elw_boxedbutton.h | 2 +- legacy/eobj/examples/evas/elw_button.c | 2 +- legacy/eobj/examples/evas/elw_button.h | 2 +- legacy/eobj/examples/evas/elw_win.c | 2 +- legacy/eobj/examples/evas/elw_win.h | 2 +- legacy/eobj/examples/evas/evas_obj.c | 2 +- legacy/eobj/examples/evas/evas_obj.h | 2 +- legacy/eobj/examples/mixin/main.c | 2 +- legacy/eobj/examples/mixin/mixin.c | 2 +- legacy/eobj/examples/mixin/mixin.h | 2 +- legacy/eobj/examples/mixin/simple.c | 2 +- legacy/eobj/examples/mixin/simple.h | 2 +- legacy/eobj/examples/signals/main.c | 2 +- legacy/eobj/examples/signals/simple.c | 2 +- legacy/eobj/examples/signals/simple.h | 2 +- legacy/eobj/lib/{eobj.h => Eobj.h} | 0 legacy/eobj/lib/eobj.c | 3 +-- legacy/eobj/tests/eobj_suite.c | 2 +- legacy/eobj/tests/eobj_test_general.c | 2 +- legacy/eobj/tests/eobj_test_init.c | 2 +- 39 files changed, 38 insertions(+), 39 deletions(-) rename legacy/eobj/lib/{eobj.h => Eobj.h} (100%) diff --git a/legacy/eobj/examples/access/inherit.c b/legacy/eobj/examples/access/inherit.c index c7c4377b00..942fff688f 100644 --- a/legacy/eobj/examples/access/inherit.c +++ b/legacy/eobj/examples/access/inherit.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "simple.h" #include "simple_protected.h" diff --git a/legacy/eobj/examples/access/inherit.h b/legacy/eobj/examples/access/inherit.h index 4188c111fb..e43aabb870 100644 --- a/legacy/eobj/examples/access/inherit.h +++ b/legacy/eobj/examples/access/inherit.h @@ -1,7 +1,7 @@ #ifndef INHERIT_H #define INHERIT_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op INHERIT_BASE_ID; diff --git a/legacy/eobj/examples/access/main.c b/legacy/eobj/examples/access/main.c index 1102b368f8..a2b22fcbb2 100644 --- a/legacy/eobj/examples/access/main.c +++ b/legacy/eobj/examples/access/main.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "simple.h" #include "inherit.h" diff --git a/legacy/eobj/examples/access/simple.c b/legacy/eobj/examples/access/simple.c index 96a67d513a..cf2041457c 100644 --- a/legacy/eobj/examples/access/simple.c +++ b/legacy/eobj/examples/access/simple.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "simple.h" #include "simple_protected.h" diff --git a/legacy/eobj/examples/access/simple.h b/legacy/eobj/examples/access/simple.h index ec752051ed..88fffa6b47 100644 --- a/legacy/eobj/examples/access/simple.h +++ b/legacy/eobj/examples/access/simple.h @@ -1,7 +1,7 @@ #ifndef SIMPLE_H #define SIMPLE_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op SIMPLE_BASE_ID; diff --git a/legacy/eobj/examples/constructors/main.c b/legacy/eobj/examples/constructors/main.c index 3ed8c71dd9..a684d01031 100644 --- a/legacy/eobj/examples/constructors/main.c +++ b/legacy/eobj/examples/constructors/main.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "simple.h" #include "simple2.h" #include "simple3.h" diff --git a/legacy/eobj/examples/constructors/mixin.c b/legacy/eobj/examples/constructors/mixin.c index fa93f9bb05..a591482cb2 100644 --- a/legacy/eobj/examples/constructors/mixin.c +++ b/legacy/eobj/examples/constructors/mixin.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "mixin.h" #include "simple.h" diff --git a/legacy/eobj/examples/constructors/mixin.h b/legacy/eobj/examples/constructors/mixin.h index d5efae20ca..886418c4ab 100644 --- a/legacy/eobj/examples/constructors/mixin.h +++ b/legacy/eobj/examples/constructors/mixin.h @@ -1,7 +1,7 @@ #ifndef MIXIN_H #define MIXIN_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op MIXIN_BASE_ID; diff --git a/legacy/eobj/examples/constructors/simple.c b/legacy/eobj/examples/constructors/simple.c index 3f2f4af7a8..13d04266c9 100644 --- a/legacy/eobj/examples/constructors/simple.c +++ b/legacy/eobj/examples/constructors/simple.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "mixin.h" #include "simple.h" diff --git a/legacy/eobj/examples/constructors/simple.h b/legacy/eobj/examples/constructors/simple.h index 4baf2b0dd5..77ba28400f 100644 --- a/legacy/eobj/examples/constructors/simple.h +++ b/legacy/eobj/examples/constructors/simple.h @@ -1,7 +1,7 @@ #ifndef SIMPLE_H #define SIMPLE_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op SIMPLE_BASE_ID; diff --git a/legacy/eobj/examples/constructors/simple2.c b/legacy/eobj/examples/constructors/simple2.c index 3f76e529c0..0ddaadc828 100644 --- a/legacy/eobj/examples/constructors/simple2.c +++ b/legacy/eobj/examples/constructors/simple2.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "mixin.h" #include "simple2.h" diff --git a/legacy/eobj/examples/constructors/simple2.h b/legacy/eobj/examples/constructors/simple2.h index 215f385611..2c376c05a8 100644 --- a/legacy/eobj/examples/constructors/simple2.h +++ b/legacy/eobj/examples/constructors/simple2.h @@ -1,7 +1,7 @@ #ifndef SIMPLE2_H #define SIMPLE2_H -#include "eobj.h" +#include "Eobj.h" #define SIMPLE2_CLASS simple2_class_get() const Eobj_Class *simple2_class_get(void) EINA_CONST; diff --git a/legacy/eobj/examples/constructors/simple3.c b/legacy/eobj/examples/constructors/simple3.c index 76c12bebfa..8e8244722f 100644 --- a/legacy/eobj/examples/constructors/simple3.c +++ b/legacy/eobj/examples/constructors/simple3.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "mixin.h" #include "simple3.h" diff --git a/legacy/eobj/examples/constructors/simple3.h b/legacy/eobj/examples/constructors/simple3.h index 1ef3a178ab..b3281c0e68 100644 --- a/legacy/eobj/examples/constructors/simple3.h +++ b/legacy/eobj/examples/constructors/simple3.h @@ -1,7 +1,7 @@ #ifndef SIMPLE3_H #define SIMPLE3_H -#include "eobj.h" +#include "Eobj.h" #define SIMPLE3_CLASS simple3_class_get() const Eobj_Class *simple3_class_get(void) EINA_CONST; diff --git a/legacy/eobj/examples/constructors/simple4.c b/legacy/eobj/examples/constructors/simple4.c index 6bc323c3a8..b68a4806c0 100644 --- a/legacy/eobj/examples/constructors/simple4.c +++ b/legacy/eobj/examples/constructors/simple4.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "mixin.h" #include "simple.h" #include "simple4.h" diff --git a/legacy/eobj/examples/constructors/simple4.h b/legacy/eobj/examples/constructors/simple4.h index 92ecc44c04..695c748fb3 100644 --- a/legacy/eobj/examples/constructors/simple4.h +++ b/legacy/eobj/examples/constructors/simple4.h @@ -1,7 +1,7 @@ #ifndef SIMPLE4_H #define SIMPLE4_H -#include "eobj.h" +#include "Eobj.h" #define SIMPLE4_CLASS simple4_class_get() const Eobj_Class *simple4_class_get(void) EINA_CONST; diff --git a/legacy/eobj/examples/evas/elw_box.c b/legacy/eobj/examples/evas/elw_box.c index 4156d088c0..33c048085d 100644 --- a/legacy/eobj/examples/evas/elw_box.c +++ b/legacy/eobj/examples/evas/elw_box.c @@ -1,6 +1,6 @@ #include -#include "eobj.h" +#include "Eobj.h" #include "evas_obj.h" #include "elw_box.h" diff --git a/legacy/eobj/examples/evas/elw_box.h b/legacy/eobj/examples/evas/elw_box.h index 0e91fd01c3..9bd8621a38 100644 --- a/legacy/eobj/examples/evas/elw_box.h +++ b/legacy/eobj/examples/evas/elw_box.h @@ -1,7 +1,7 @@ #ifndef ELW_BOX_H #define ELW_BOX_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op ELW_BOX_BASE_ID; diff --git a/legacy/eobj/examples/evas/elw_boxedbutton.c b/legacy/eobj/examples/evas/elw_boxedbutton.c index a50b484c00..e95071a307 100644 --- a/legacy/eobj/examples/evas/elw_boxedbutton.c +++ b/legacy/eobj/examples/evas/elw_boxedbutton.c @@ -1,6 +1,6 @@ #include -#include "eobj.h" +#include "Eobj.h" #include "evas_obj.h" #include "elw_box.h" #include "elw_button.h" diff --git a/legacy/eobj/examples/evas/elw_boxedbutton.h b/legacy/eobj/examples/evas/elw_boxedbutton.h index 89cfdbba0b..4a1c9fdcdc 100644 --- a/legacy/eobj/examples/evas/elw_boxedbutton.h +++ b/legacy/eobj/examples/evas/elw_boxedbutton.h @@ -1,7 +1,7 @@ #ifndef ELW_BOXEDBUTTON_H #define ELW_BOXEDBUTTON_H -#include "eobj.h" +#include "Eobj.h" #define ELW_BOXEDBUTTON_CLASS elw_boxedbutton_class_get() const Eobj_Class *elw_boxedbutton_class_get(void) EINA_CONST; diff --git a/legacy/eobj/examples/evas/elw_button.c b/legacy/eobj/examples/evas/elw_button.c index 6979ccfbae..4ca8844d9e 100644 --- a/legacy/eobj/examples/evas/elw_button.c +++ b/legacy/eobj/examples/evas/elw_button.c @@ -1,6 +1,6 @@ #include -#include "eobj.h" +#include "Eobj.h" #include "evas_obj.h" #include "elw_button.h" diff --git a/legacy/eobj/examples/evas/elw_button.h b/legacy/eobj/examples/evas/elw_button.h index a4da9e7ffd..7e78c6943c 100644 --- a/legacy/eobj/examples/evas/elw_button.h +++ b/legacy/eobj/examples/evas/elw_button.h @@ -1,7 +1,7 @@ #ifndef ELW_BUTTON_H #define ELW_BUTTON_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op ELW_BUTTON_BASE_ID; diff --git a/legacy/eobj/examples/evas/elw_win.c b/legacy/eobj/examples/evas/elw_win.c index 9457170112..afddb13e63 100644 --- a/legacy/eobj/examples/evas/elw_win.c +++ b/legacy/eobj/examples/evas/elw_win.c @@ -1,6 +1,6 @@ #include -#include "eobj.h" +#include "Eobj.h" #include "evas_obj.h" #include "elw_win.h" diff --git a/legacy/eobj/examples/evas/elw_win.h b/legacy/eobj/examples/evas/elw_win.h index 32b984c7fa..a59b2ec0a5 100644 --- a/legacy/eobj/examples/evas/elw_win.h +++ b/legacy/eobj/examples/evas/elw_win.h @@ -1,7 +1,7 @@ #ifndef ELW_WIN_H #define ELW_WIN_H -#include "eobj.h" +#include "Eobj.h" #define ELW_WIN_CLASS elw_win_class_get() const Eobj_Class *elw_win_class_get(void) EINA_CONST; diff --git a/legacy/eobj/examples/evas/evas_obj.c b/legacy/eobj/examples/evas/evas_obj.c index b7d518ff4b..e53caaad75 100644 --- a/legacy/eobj/examples/evas/evas_obj.c +++ b/legacy/eobj/examples/evas/evas_obj.c @@ -1,6 +1,6 @@ #include -#include "eobj.h" +#include "Eobj.h" #include "evas_obj.h" static Eobj_Class *_my_class = NULL; diff --git a/legacy/eobj/examples/evas/evas_obj.h b/legacy/eobj/examples/evas/evas_obj.h index 1f2a50f417..49a2f69fd9 100644 --- a/legacy/eobj/examples/evas/evas_obj.h +++ b/legacy/eobj/examples/evas/evas_obj.h @@ -1,7 +1,7 @@ #ifndef EVAS_OBJ_H #define EVAS_OBJ_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op EVAS_OBJ_BASE_ID; diff --git a/legacy/eobj/examples/mixin/main.c b/legacy/eobj/examples/mixin/main.c index 47987f413c..4e36833511 100644 --- a/legacy/eobj/examples/mixin/main.c +++ b/legacy/eobj/examples/mixin/main.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "simple.h" #include "mixin.h" diff --git a/legacy/eobj/examples/mixin/mixin.c b/legacy/eobj/examples/mixin/mixin.c index 365e4057d6..7a6eff9342 100644 --- a/legacy/eobj/examples/mixin/mixin.c +++ b/legacy/eobj/examples/mixin/mixin.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "mixin.h" #include "simple.h" diff --git a/legacy/eobj/examples/mixin/mixin.h b/legacy/eobj/examples/mixin/mixin.h index d5efae20ca..886418c4ab 100644 --- a/legacy/eobj/examples/mixin/mixin.h +++ b/legacy/eobj/examples/mixin/mixin.h @@ -1,7 +1,7 @@ #ifndef MIXIN_H #define MIXIN_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op MIXIN_BASE_ID; diff --git a/legacy/eobj/examples/mixin/simple.c b/legacy/eobj/examples/mixin/simple.c index 57e3eb10f1..f03947a7f6 100644 --- a/legacy/eobj/examples/mixin/simple.c +++ b/legacy/eobj/examples/mixin/simple.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "mixin.h" #include "simple.h" diff --git a/legacy/eobj/examples/mixin/simple.h b/legacy/eobj/examples/mixin/simple.h index 4baf2b0dd5..77ba28400f 100644 --- a/legacy/eobj/examples/mixin/simple.h +++ b/legacy/eobj/examples/mixin/simple.h @@ -1,7 +1,7 @@ #ifndef SIMPLE_H #define SIMPLE_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op SIMPLE_BASE_ID; diff --git a/legacy/eobj/examples/signals/main.c b/legacy/eobj/examples/signals/main.c index 7ebb78ca1a..867e1ce354 100644 --- a/legacy/eobj/examples/signals/main.c +++ b/legacy/eobj/examples/signals/main.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "simple.h" static Eina_Bool diff --git a/legacy/eobj/examples/signals/simple.c b/legacy/eobj/examples/signals/simple.c index ae5bbd3285..3150b27c5d 100644 --- a/legacy/eobj/examples/signals/simple.c +++ b/legacy/eobj/examples/signals/simple.c @@ -1,4 +1,4 @@ -#include "eobj.h" +#include "Eobj.h" #include "simple.h" EAPI Eobj_Op SIMPLE_BASE_ID = 0; diff --git a/legacy/eobj/examples/signals/simple.h b/legacy/eobj/examples/signals/simple.h index 10fe63929b..3aa2023f59 100644 --- a/legacy/eobj/examples/signals/simple.h +++ b/legacy/eobj/examples/signals/simple.h @@ -1,7 +1,7 @@ #ifndef SIMPLE_H #define SIMPLE_H -#include "eobj.h" +#include "Eobj.h" extern EAPI Eobj_Op SIMPLE_BASE_ID; diff --git a/legacy/eobj/lib/eobj.h b/legacy/eobj/lib/Eobj.h similarity index 100% rename from legacy/eobj/lib/eobj.h rename to legacy/eobj/lib/Eobj.h diff --git a/legacy/eobj/lib/eobj.c b/legacy/eobj/lib/eobj.c index c656750f31..4892c3477d 100644 --- a/legacy/eobj/lib/eobj.c +++ b/legacy/eobj/lib/eobj.c @@ -1,7 +1,6 @@ #include -#include -#include "eobj.h" +#include "Eobj.h" static int _eobj_log_dom = -1; diff --git a/legacy/eobj/tests/eobj_suite.c b/legacy/eobj/tests/eobj_suite.c index b6f1d46d0d..8c579b4951 100644 --- a/legacy/eobj/tests/eobj_suite.c +++ b/legacy/eobj/tests/eobj_suite.c @@ -5,7 +5,7 @@ #include #include -#include "eobj.h" +#include "Eobj.h" #include "eobj_suite.h" diff --git a/legacy/eobj/tests/eobj_test_general.c b/legacy/eobj/tests/eobj_test_general.c index d44abcc4c7..8e55c61d12 100644 --- a/legacy/eobj/tests/eobj_test_general.c +++ b/legacy/eobj/tests/eobj_test_general.c @@ -5,7 +5,7 @@ #include #include "eobj_suite.h" -#include "eobj.h" +#include "Eobj.h" START_TEST(eobj_simple) { diff --git a/legacy/eobj/tests/eobj_test_init.c b/legacy/eobj/tests/eobj_test_init.c index 507ed7d851..52b8883bfe 100644 --- a/legacy/eobj/tests/eobj_test_init.c +++ b/legacy/eobj/tests/eobj_test_init.c @@ -5,7 +5,7 @@ #include #include "eobj_suite.h" -#include "eobj.h" +#include "Eobj.h" START_TEST(eobj_simple) {