* GormCore/GormDocument.m: Fix wrong string type in David Chisnall

fix for the new libobjc.
This commit is contained in:
fredkiefer 2019-01-25 13:14:55 +01:00
parent c3c93818af
commit 0d3ab06c92
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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);