Skip to content

Commit

Permalink
Rename WPF's ImageBackend to ImageHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
ermau committed Feb 28, 2012
1 parent ec25c71 commit 6028b65
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Xwt.WPF/Xwt.WPF.csproj
Expand Up @@ -42,7 +42,7 @@
<Compile Include="Xwt.WPFBackend.Utilities\CellUtil.cs" />
<Compile Include="Xwt.WPFBackend.Utilities\MultiColumnTreeViewItem.cs" />
<Compile Include="Xwt.WPFBackend\ButtonBackend.cs" />
<Compile Include="Xwt.WPFBackend\ImageBackend.cs" />
<Compile Include="Xwt.WPFBackend\ImageHandler.cs" />
<Compile Include="Xwt.WPFBackend.Interop\NativeMethods.cs" />
<Compile Include="Xwt.WPFBackend\ImageViewBackend.cs" />
<Compile Include="Xwt.WPFBackend\LabelBackend.cs" />
Expand Down
@@ -1,5 +1,5 @@
//
// ButtonBackend.cs
// ImageHandler.cs
//
// Author:
// Luís Reis <luiscubal@gmail.com>
Expand Down Expand Up @@ -35,7 +35,7 @@

namespace Xwt.WPFBackend
{
public class ImageBackend: ImageBackendHandler
public class ImageHandler: ImageBackendHandler
{
public override object LoadFromStream (Stream stream)
{
Expand Down
2 changes: 1 addition & 1 deletion Xwt.WPF/Xwt.WPFBackend/WPFEngine.cs
Expand Up @@ -54,7 +54,7 @@ public override void InitializeApplication ()
WidgetRegistry.RegisterBackend (typeof (TreeStore), typeof (TreeStoreBackend));
WidgetRegistry.RegisterBackend (typeof (ImageView), typeof (ImageViewBackend));

WidgetRegistry.RegisterBackend (typeof (Image), typeof (ImageBackend));
WidgetRegistry.RegisterBackend (typeof (Image), typeof (ImageHandler));
WidgetRegistry.RegisterBackend (typeof (Font), typeof (FontBackendHandler));
}

Expand Down

0 comments on commit 6028b65

Please sign in to comment.