summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-01-18 09:51:51 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-07-10 11:11:17 +0900
commit0573deb0df2ae56938489f7b535189b7a54081b0 (patch)
tree9cd6cb172a75bd641fd4b6078b993899f660f79b /Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
parent3e7b12ae705029a07ee0266651f208f1b8fea24d (diff)
downloadxamarin-forms-0573deb0df2ae56938489f7b535189b7a54081b0.tar.gz
xamarin-forms-0573deb0df2ae56938489f7b535189b7a54081b0.tar.bz2
xamarin-forms-0573deb0df2ae56938489f7b535189b7a54081b0.zip
Fix build warning CS4014
Change-Id: Idbbcb5b138504afcdc7e0406b6aaea0dd22228db
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs b/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
index 9492e7c6..7bee5c8a 100644
--- a/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Cells/ImageCellRenderer.cs
@@ -35,7 +35,7 @@ namespace Xamarin.Forms.Platform.Tizen
image.SetAlignment(-1.0, -1.0); // fill
image.SetWeight(1.0, 1.0); // expand
- image.LoadFromImageSourceAsync(imgCell.ImageSource);
+ var task = image.LoadFromImageSourceAsync(imgCell.ImageSource);
return image;
}
else