cog/TagEditor/TagEditorController.m

40 lines
513 B
Matlab
Raw Normal View History

2008-12-15 10:06:07 +00:00
//
// TagEditorController.m
// Cog
//
// Created by Safari on 08/11/17.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
/*
2008-12-15 10:06:07 +00:00
#import "TagEditorController.h"
#import "PlaylistController.h"
@implementation TagEditorController
- (id)init
{
self = [super init];
2008-12-15 10:06:07 +00:00
if( self )
{
// initialize the class
}
2008-12-15 10:06:07 +00:00
return self;
}
- (void)showInfoForURL:(NSURL*)url
{
[tageditorWindow showWindow:self];
2008-12-15 10:06:07 +00:00
}
- (IBAction)cancel:(id)sender
{
[tageditorWindow close];
2008-12-15 10:06:07 +00:00
}
@end
*/