Fix VD prevent issues 30/46830/5
authortaeyoon <taeyoon0.lee@samsung.com>
Wed, 26 Aug 2015 07:21:26 +0000 (16:21 +0900)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Fri, 28 Aug 2015 17:01:33 +0000 (10:01 -0700)
 - Add copy constructor & assignment operator (Undefined)

Change-Id: Iae5ab6376fa777be93fb99c2da7edefa1e7d1401

dali-toolkit/internal/controls/scrollable/item-view/depth-layout.h
dali-toolkit/internal/controls/scrollable/item-view/grid-layout.h
dali-toolkit/internal/controls/scrollable/item-view/spiral-layout.h

index 82ce8fc..6ce8c73 100644 (file)
@@ -214,6 +214,14 @@ protected:
 
 private:
 
 
 private:
 
+  // Undefined
+  DepthLayout( const DepthLayout& depthLayout );
+
+  // Undefined
+  DepthLayout& operator=( const DepthLayout& depthLayout );
+
+private:
+
   struct Impl;
   Impl* mImpl;
 };
   struct Impl;
   Impl* mImpl;
 };
index 8cbdd33..7476822 100644 (file)
@@ -257,6 +257,14 @@ protected:
 
 private:
 
 
 private:
 
+  // Undefined
+  GridLayout( const GridLayout& itemLayout );
+
+  // Undefined
+  GridLayout& operator=( const GridLayout& rhs );
+
+private:
+
   struct Impl;
   Impl* mImpl;
 };
   struct Impl;
   Impl* mImpl;
 };
index 00f550a..1a3e30c 100644 (file)
@@ -187,6 +187,14 @@ protected:
 
 private:
 
 
 private:
 
+  // Undefined
+  SpiralLayout( const SpiralLayout& spiralLayout );
+
+  // Undefined
+  SpiralLayout& operator=( const SpiralLayout& spiralLayout );
+
+private:
+
   struct Impl;
   Impl* mImpl;
 };
   struct Impl;
   Impl* mImpl;
 };