From 986be1d93891c77c9e4e5c7c1c71a0f32fa80b87 Mon Sep 17 00:00:00 2001 From: Andreas Volz Date: Tue, 30 Mar 2010 21:19:11 +0000 Subject: [PATCH] don't shutdown edje if last edje object is removed this leads into a crash in my application. SVN revision: 47609 --- edjexx/src/Object.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/edjexx/src/Object.cpp b/edjexx/src/Object.cpp index 8c48620..8c24714 100644 --- a/edjexx/src/Object.cpp +++ b/edjexx/src/Object.cpp @@ -69,9 +69,6 @@ Object::~Object() { //FIXME: Remove callbacks? evas_object_del( o ); - - // Shut down the Edje library (if internal count is zero) - Base::shutdown (); } void Object::setFile( const std::string &filename, const std::string &groupname )