aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/UI/Splash.xaml.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-11 14:20:12 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-11 14:20:12 -0400
commit670a53258ef79ee92f578335577df4f768c9d7d4 (patch)
tree0df702bea2189647defb9a11f9cd792d9410cfe4 /MediaBrowser.Common/UI/Splash.xaml.cs
parent016590529f1dde1b2bcfa6c64aa07ea866f26b51 (diff)
Some minor code cleanups
Diffstat (limited to 'MediaBrowser.Common/UI/Splash.xaml.cs')
-rw-r--r--MediaBrowser.Common/UI/Splash.xaml.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Common/UI/Splash.xaml.cs b/MediaBrowser.Common/UI/Splash.xaml.cs
index f66f9ec8fc..0956702295 100644
--- a/MediaBrowser.Common/UI/Splash.xaml.cs
+++ b/MediaBrowser.Common/UI/Splash.xaml.cs
@@ -27,8 +27,8 @@ namespace MediaBrowser.Common.UI
Logger.LogInfo(e.Description);
}
- this.lblProgress.Content = e.Description;
- this.pbProgress.Value = (double)e.PercentComplete;
+ lblProgress.Content = e.Description;
+ pbProgress.Value = (double)e.PercentComplete;
}
private void Splash_Loaded(object sender, RoutedEventArgs e)