aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/UI/BaseApplication.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-02 16:24:10 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-02 16:24:10 -0400
commite4b0eb5779d56b3d494bf5792f0058853b3b1df3 (patch)
tree5a422a8781e57756d47a147964310f78980f7bb4 /MediaBrowser.Common/UI/BaseApplication.cs
parent3c473752298e2bc91d3cb10a13c236cfaa2bc11e (diff)
Added taskbar icon and standardized locations of images
Diffstat (limited to 'MediaBrowser.Common/UI/BaseApplication.cs')
-rw-r--r--MediaBrowser.Common/UI/BaseApplication.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/MediaBrowser.Common/UI/BaseApplication.cs b/MediaBrowser.Common/UI/BaseApplication.cs
index 2112be679..a45faca50 100644
--- a/MediaBrowser.Common/UI/BaseApplication.cs
+++ b/MediaBrowser.Common/UI/BaseApplication.cs
@@ -68,18 +68,5 @@ namespace MediaBrowser.Common.UI
Kernel.Dispose();
}
-
- public BitmapImage GetLogoImage()
- {
- BitmapImage bitmap = new BitmapImage();
-
- bitmap.CacheOption = BitmapCacheOption.Default;
-
- bitmap.BeginInit();
- bitmap.StreamSource = Assembly.GetExecutingAssembly().GetManifestResourceStream("MediaBrowser.Common.Resources.mblogo.png");
- bitmap.EndInit();
-
- return bitmap;
- }
}
}