mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-22 22:20:44 +00:00
* GormCore/GormDocument.m: Fix wrong string type in David Chisnall
fix for the new libobjc.
This commit is contained in:
parent
c3c93818af
commit
0d3ab06c92
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2019-01-25 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* GormCore/GormDocument.m: Fix wrong string type in David Chisnall
|
||||
fix for the new libobjc.
|
||||
|
||||
2015-11-05 20:40-EST Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* GormCore/GormWindowTemplate.m: in baseWindowClass return
|
||||
|
|
|
@ -105,7 +105,7 @@
|
|||
static Ivar iv;
|
||||
if (!iv)
|
||||
{
|
||||
Ivar iv = class_getInstanceVariable([NSDocument class], @"_window");
|
||||
Ivar iv = class_getInstanceVariable([NSDocument class], "_window");
|
||||
NSAssert(iv, @"Unable to find _window ivar in NSDocument class");
|
||||
}
|
||||
return object_getIvar(self, iv);
|
||||
|
|
Loading…
Reference in a new issue