2010-01-06 18:11:16 -06:00
|
|
|
//
|
|
|
|
// MGMFeedback.m
|
|
|
|
// GeckoReporter
|
|
|
|
//
|
|
|
|
// Created by Mr. Gecko on 1/2/10.
|
|
|
|
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "MGMFeedback.h"
|
|
|
|
#import "MGMBugWindow.h"
|
|
|
|
#import "MGMContactWindow.h"
|
|
|
|
|
|
|
|
@implementation MGMFeedback
|
|
|
|
- (IBAction)openBugReport:(id)sender {
|
2010-01-12 08:05:09 -06:00
|
|
|
[MGMBugWindow sharedBugWindow];
|
2010-01-06 18:11:16 -06:00
|
|
|
}
|
|
|
|
- (IBAction)openContact:(id)sender {
|
2010-01-12 08:05:09 -06:00
|
|
|
[MGMContactWindow sharedContactWindow];
|
2010-01-06 18:11:16 -06:00
|
|
|
}
|
|
|
|
@end
|