Updated ivars for changing in NSSavePanel code

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5391 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 1999-12-07 05:52:24 +00:00
parent 2eb2ff5cf9
commit f06480bd44

View file

@ -59,26 +59,26 @@ enum {
@interface NSSavePanel : NSPanel <NSCoding>
{
NSView* _accessoryView;
NSView* _bottomView;
id _delegate;
NSBrowser* _browser;
NSForm* _form;
NSButton* _okButton;
NSTextField* _titleField;
NSView* _topView;
NSView *_accessoryView;
NSView *_bottomView;
NSBrowser *_browser;
NSForm *_form;
NSButton *_okButton;
NSTextField *_titleField;
NSView *_topView;
NSSize _originalMinSize;
NSSize _originalSize;
NSString *_requiredFileType;
NSString *_lastValidPath;
NSString *_directory;
NSString *_fullFileName;
BOOL _treatsFilePackagesAsDirectories;
BOOL _delegateHasCompareFilter;
BOOL _delegateHasFilenameFilter;
BOOL _delegateHasShowFilenameFilter;
BOOL _delegateHasValidNameFilter;
BOOL _selfHasShowExtensionFilter;
}
/*