Re: [Pyobjc-dev] nswindow subclass
Brought to you by:
ronaldoussoren
From: <bb...@ma...> - 2003-02-11 20:26:34
|
On Tuesday, Feb 11, 2003, at 15:02 US/Eastern, Gus Mueller wrote: > However, when I try and run it, I get the following message: > "Unknown Window class PydgetWindow in Interface Builder file, > creating generic Window instead" Assuming that PydgetWindow is implemented in a python file, did you load the file/module before the NIB file was loaded? That is, are you sure that the class is defined prior to loading the NIB file? You can simply add 'import PydgetWindow' in __main__.py [assuming that is the name of the source file]... b.bum |