mirror of
https://github.com/jenshemprich/MacGLide.git
synced 2025-03-13 05:29:21 +00:00
28 lines
588 B
Plaintext
28 lines
588 B
Plaintext
#import "MacGLideMainPanel.h"
|
|
#include "GlideSettings.h"
|
|
|
|
|
|
@implementation MacGLideMainPanel
|
|
|
|
/*
|
|
- (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation
|
|
{
|
|
[super initWithContentRect:contentRect styleMask:styleMask backing:bufferingType defer:deferCreation];
|
|
// Select default setting file
|
|
OSErr err = userConfig.init(NULL);
|
|
if (err == noErr)
|
|
{
|
|
err = userConfig.load();
|
|
if (err == noErr)
|
|
{
|
|
// init controls
|
|
// [updateButton userConfig.Mipmapping];
|
|
}
|
|
}
|
|
return self;
|
|
}
|
|
*/
|
|
|
|
|
|
@end
|