summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Renderers/NavigationPageRenderer.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-10-23 13:34:27 +0900
commit51e6a0f46ca2254989e43f33e879a6957989a76f (patch)
tree8bc0f454dded0542f4ae7fb77b7d3a47f000052e /Xamarin.Forms.Platform.Tizen/Renderers/NavigationPageRenderer.cs
parent316d956988cc9fcd19c1c9882e0a84032807ee8a (diff)
downloadxamarin-forms-51e6a0f46ca2254989e43f33e879a6957989a76f.tar.gz
xamarin-forms-51e6a0f46ca2254989e43f33e879a6957989a76f.tar.bz2
xamarin-forms-51e6a0f46ca2254989e43f33e879a6957989a76f.zip
Fix build warning CS4014
Change-Id: Idbbcb5b138504afcdc7e0406b6aaea0dd22228db
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Renderers/NavigationPageRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Renderers/NavigationPageRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Renderers/NavigationPageRenderer.cs b/Xamarin.Forms.Platform.Tizen/Renderers/NavigationPageRenderer.cs
index 361f0912..42ca0744 100644
--- a/Xamarin.Forms.Platform.Tizen/Renderers/NavigationPageRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Renderers/NavigationPageRenderer.cs
@@ -294,7 +294,7 @@ namespace Xamarin.Forms.Platform.Tizen
else
{
Native.Image iconImage = new Native.Image(Forms.Context.MainWindow);
- iconImage.LoadFromImageSourceAsync(item.Icon);
+ var task = iconImage.LoadFromImageSourceAsync(item.Icon);
button.Image = iconImage;
}