Removed fini() call from destructors 98/22498/1
authorJi-hoon Lee <dalton.lee@samsung.com>
Tue, 25 Feb 2014 08:17:51 +0000 (17:17 +0900)
committershoum.chen@samsung.com <shoum.chen@samsung.com>
Wed, 4 Jun 2014 21:59:56 +0000 (17:59 -0400)
Change-Id: I98bd8bf69ff51243c82472f31ad6d6c20f5485ce

scl/sclgraphics.cpp
scl/sclgwes.cpp
scl/sclutils.cpp

index 048f973..477539c 100644 (file)
@@ -41,8 +41,6 @@ CSCLGraphics::~CSCLGraphics()
 {
     SCL_DEBUG();
 
-    fini();
-
     if (m_impl) {
         delete m_impl;
         m_impl = NULL;
index b10503d..558e962 100644 (file)
@@ -32,8 +32,6 @@ CSCLGwes::CSCLGwes()
 CSCLGwes::~CSCLGwes()
 {
     SCL_DEBUG();
-
-    fini();
 }
 
 void CSCLGwes::init(sclwindow parent, scl16 width, scl16 height)
index 1ace1ba..ccbf423 100644 (file)
@@ -47,9 +47,6 @@ CSCLUtils::CSCLUtils()
 CSCLUtils::~CSCLUtils()
 {
     SCL_DEBUG();
-
-    /* To make sure everything's cleaned up */
-    fini();
 }
 
 CSCLUtils* CSCLUtils::get_instance()