Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
svn path=/trunk/winforms-tools/; revision=50405
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Olk committed Sep 21, 2005
1 parent c74d885 commit 50d5136
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MWFResourceEditor/Changelog
@@ -1,3 +1,7 @@
2005-09-21 Alexander Olk <xenomorph2@onlinehome.de>

* ResourceListBox.cs: Add cursor here, too

2005-09-21 Peter Dennis Bartok <pbartok@novell.com>

* ResourceCursor.cs: Added
Expand Down
7 changes: 7 additions & 0 deletions MWFResourceEditor/ResourceListBox.cs
Expand Up @@ -73,6 +73,13 @@ public void AddResource( string resource_name, object resource )

Items.Add( resColor );
}
else
if ( resource.GetType( ) == typeof( Cursor ) )
{
ResourceCursor resCursor = new ResourceCursor( resource_name, (Cursor)resource );

Items.Add( resCursor );
}
}

public void AddResourceDirect( IResource resource )
Expand Down

0 comments on commit 50d5136

Please sign in to comment.