mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 16:21:56 +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
97b6a92f2d
commit
58bbd40023
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>
|
2003-06-26 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Headers/gnustep/gui/GSLayoutManager.h
|
* Headers/gnustep/gui/GSLayoutManager.h
|
||||||
|
|
Binary file not shown.
|
@ -716,7 +716,7 @@ static NSImage *unexpandable = nil;
|
||||||
- (void) setDataSource: (id)anObject
|
- (void) setDataSource: (id)anObject
|
||||||
{
|
{
|
||||||
#define CHECK_REQUIRED_METHOD(selector_name) \
|
#define CHECK_REQUIRED_METHOD(selector_name) \
|
||||||
if (![anObject respondsToSelector: @selector(selector_name)]) \
|
if (anObject && ![anObject respondsToSelector: @selector(selector_name)]) \
|
||||||
[NSException raise: NSInternalInconsistencyException \
|
[NSException raise: NSInternalInconsistencyException \
|
||||||
format: @"data source does not respond to %@", @#selector_name]
|
format: @"data source does not respond to %@", @#selector_name]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue