mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 06:51:44 +00:00
See the ChangeLog for the full description.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17043 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
90f9f8ea6b
commit
6a1f74c661
3 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-06-26 Ludovic Marcotte <ludovic@Sophos.ca>
|
||||
|
||||
* Fixed the transparency of Images/common_ret.tiff
|
||||
* Source/NSOutlineView (-setDataSource:) Modified to allow
|
||||
a nil data source.
|
||||
|
||||
2003-06-26 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/gnustep/gui/GSLayoutManager.h
|
||||
|
|
Binary file not shown.
|
@ -716,7 +716,7 @@ static NSImage *unexpandable = nil;
|
|||
- (void) setDataSource: (id)anObject
|
||||
{
|
||||
#define CHECK_REQUIRED_METHOD(selector_name) \
|
||||
if (![anObject respondsToSelector: @selector(selector_name)]) \
|
||||
if (anObject && ![anObject respondsToSelector: @selector(selector_name)]) \
|
||||
[NSException raise: NSInternalInconsistencyException \
|
||||
format: @"data source does not respond to %@", @#selector_name]
|
||||
|
||||
|
|
Loading…
Reference in a new issue