Mercurial > silverbladetech
changeset 84:5cb6117d80b1
title removed
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Tue, 24 Apr 2012 00:51:53 +0100 |
parents | 30a7e46611c6 |
children | 4863009a2edf |
files | SilverlightGlimpse/SilverlightValidation/App.xaml.cs |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/SilverlightGlimpse/SilverlightValidation/App.xaml.cs Tue Apr 24 00:50:01 2012 +0100 +++ b/SilverlightGlimpse/SilverlightValidation/App.xaml.cs Tue Apr 24 00:51:53 2012 +0100 @@ -17,15 +17,14 @@ private void Application_Startup(object sender, StartupEventArgs e) { - const string appName = "Silverlight Glimpse"; try { this.RootVisual = new Views.UserView(); - Glimpse.Service.Load(this, appName); + Glimpse.Service.Load(this); } catch (Exception ex) { - Glimpse.Service.DisplayLoadFailure(this, ex, appName); + Glimpse.Service.DisplayLoadFailure(this, ex); } }