[vlc-devel] commit: Remove VLC_OBJECT_INTERACTION ( Rémi Denis-Courmont )

git version control git at videolan.org
Sat Jun 21 10:56:47 CEST 2008


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat Jun 21 11:58:40 2008 +0300| [6c790747f3847ae2c88a03d6a053968143ad76e6]

Remove VLC_OBJECT_INTERACTION

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6c790747f3847ae2c88a03d6a053968143ad76e6
---

 include/vlc_objects.h           |    1 -
 modules/misc/lua/libs/objects.c |    1 -
 src/misc/objects.c              |    4 ----
 3 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/include/vlc_objects.h b/include/vlc_objects.h
index 45c5347..a609133 100644
--- a/include/vlc_objects.h
+++ b/include/vlc_objects.h
@@ -47,7 +47,6 @@
 #define VLC_OBJECT_OPENGL      (-21)
 #define VLC_OBJECT_FILTER      (-22)
 #define VLC_OBJECT_OSDMENU     (-28)
-#define VLC_OBJECT_INTERACTION (-32)
 /* Please add new object types below -34 */
 /* Please do not add new object types anyway */
 #define VLC_OBJECT_GENERIC     (-666)
diff --git a/modules/misc/lua/libs/objects.c b/modules/misc/lua/libs/objects.c
index 141b6b4..2822f1f 100644
--- a/modules/misc/lua/libs/objects.c
+++ b/modules/misc/lua/libs/objects.c
@@ -103,7 +103,6 @@ static int vlc_object_type_from_string( const char *psz_name )
           { VLC_OBJECT_OPENGL, "opengl" },
           { VLC_OBJECT_FILTER, "filter" },
           { VLC_OBJECT_OSDMENU, "osdmenu" },
-          { VLC_OBJECT_INTERACTION, "interaction" },
           { VLC_OBJECT_GENERIC, "generic" },
           { 0, "" } };
     int i;
diff --git a/src/misc/objects.c b/src/misc/objects.c
index 9dc2483..85aef36 100644
--- a/src/misc/objects.c
+++ b/src/misc/objects.c
@@ -270,10 +270,6 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
             i_size = sizeof( announce_handler_t );
             psz_type = "announce";
             break;
-        case VLC_OBJECT_INTERACTION:
-            i_size = sizeof( interaction_t );
-            psz_type = "interaction";
-            break;
         default:
             i_size = i_type > (int)sizeof(vlc_object_t)
                          ? i_type : (int)sizeof(vlc_object_t);




More information about the vlc-devel mailing list