Svace errors in Grid layout 95/186595/1
authorAgnelo Vaz <agnelo.vaz@samsung.com>
Fri, 10 Aug 2018 14:37:46 +0000 (15:37 +0100)
committerAgnelo Vaz <agnelo.vaz@samsung.com>
Fri, 10 Aug 2018 14:38:17 +0000 (15:38 +0100)
Change-Id: I396bded7da473a87a54428105d86ff5b5a85d5d2

dali-toolkit/internal/layouting/grid-impl.h
dali-toolkit/internal/layouting/grid-locations.h

index 6afb3f5..f21a9dd 100644 (file)
@@ -107,12 +107,8 @@ private:
   int mNumColumns;
   int mNumRows;
 
-  int mHorizontalSpacing = 0;
-  int mVerticalSpacing = 0;
-  int mRequestedHorizontalSpacing;
   int mRequestedColumnWidth;
   int mRequestedNumColumns;
-  int mRequestedNumRows;
 };
 
 } // namespace Internal
index f1f8b6e..2bc4359 100644 (file)
@@ -59,7 +59,6 @@ public:
     int xEnd;
     int yTop;
     int yBottom;
-    int explictlyDefined;
 
     Cell( int x1, int x2, int y1, int y2): xStart(x1), xEnd(x2), yTop(y1), yBottom(y2){};
   };