Remove new modifier in property
authorSeungkeun Lee <sngn.lee@samsung.com>
Fri, 9 Sep 2016 06:07:58 +0000 (15:07 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Mon, 12 Sep 2016 01:33:44 +0000 (10:33 +0900)
 - Please do not use "new" modifier

Change-Id: I1bfcd7381513b1c5c6f8e91cea4eabf71fbffa59

src/ElmSharp/ElmSharp/Entry.cs
src/ElmSharp/ElmSharp/EvasObject.cs
src/ElmSharp/ElmSharp/Popup.cs
src/ElmSharp/ElmSharp/Widget.cs

index 5378a8d..3471df7 100644 (file)
@@ -166,7 +166,7 @@ namespace ElmSharp
             }
         }
 
-        public new string Text
+        public override string Text
         {
             get
             {
index 041cd71..a52ace6 100644 (file)
@@ -73,7 +73,7 @@ namespace ElmSharp
             }
         }
 
-        public double AlignmentX
+        public virtual double AlignmentX
         {
             get
             {
@@ -85,7 +85,7 @@ namespace ElmSharp
             }
         }
 
-        public double AlignmentY
+        public virtual double AlignmentY
         {
             get
             {
index 545c412..1fcb98e 100644 (file)
@@ -97,7 +97,7 @@ namespace ElmSharp
             }
         }
 
-        public new double AlignmentX
+        public override double AlignmentX
         {
             get
             {
@@ -109,7 +109,7 @@ namespace ElmSharp
             }
         }
 
-        public new double AlignmentY
+        public override double AlignmentY
         {
             get
             {
index 665ecfa..1bca2a0 100644 (file)
@@ -60,7 +60,7 @@ namespace ElmSharp
             }
         }
 
-        public string Text
+        public virtual string Text
         {
             get
             {