Merge branch 'release/r#147' into develop

This commit is contained in:
stubbfel
2013-08-13 15:55:17 +02:00

View File

@@ -15,6 +15,7 @@ namespace CampusAppWP8.Pages
using CampusAppWP8.Utility;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using System.Threading;
/// <summary>
/// Class for the StartPage
@@ -159,7 +160,8 @@ namespace CampusAppWP8.Pages
if (result == MessageBoxResult.OK)
{
Settings.AppSetting.GeoWatchEnable = true;
Utilities.DetermineAndStoreCurrentPosition();
Thread thread = new Thread(new ThreadStart(Utilities.DetermineAndStoreCurrentPosition));
thread.Start();
}
else
{