diff --git a/MuteUnmuteMic.xcodeproj/project.pbxproj b/MuteUnmuteMic.xcodeproj/project.pbxproj index 92534f4..ecddeac 100644 --- a/MuteUnmuteMic.xcodeproj/project.pbxproj +++ b/MuteUnmuteMic.xcodeproj/project.pbxproj @@ -37,13 +37,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + D9A9F6701BC5830F004395E8 /* AudioMixer */ = { + isa = PBXGroup; + children = ( + D9A9F66D1BC35EDC004395E8 /* AudioMixer.c */, + D9A9F66E1BC35EDC004395E8 /* AudioMixer.h */, + ); + name = AudioMixer; + path = ..; + sourceTree = ""; + }; ECF208B01BAF2DE6000D3C2C = { isa = PBXGroup; children = ( ECF208BB1BAF2DE6000D3C2C /* MuteUnmuteMic */, ECF208BA1BAF2DE6000D3C2C /* Products */, - D9A9F66D1BC35EDC004395E8 /* AudioMixer.c */, - D9A9F66E1BC35EDC004395E8 /* AudioMixer.h */, ); sourceTree = ""; }; @@ -64,6 +72,7 @@ ECF208C41BAF2DE6000D3C2C /* MainMenu.xib */, ECF208C71BAF2DE6000D3C2C /* Info.plist */, ECF208BF1BAF2DE6000D3C2C /* Supporting Files */, + D9A9F6701BC5830F004395E8 /* AudioMixer */, ); path = MuteUnmuteMic; sourceTree = ""; @@ -103,7 +112,7 @@ isa = PBXProject; attributes = { LastUpgradeCheck = 0700; - ORGANIZATIONNAME = "Gustavo Barbosa"; + ORGANIZATIONNAME = "CocoaHeads Brasil"; TargetAttributes = { ECF208B81BAF2DE6000D3C2C = { CreatedOnToolsVersion = 7.0; diff --git a/MuteUnmuteMic/AppDelegate.h b/MuteUnmuteMic/AppDelegate.h index 6461c4c..62c5636 100644 --- a/MuteUnmuteMic/AppDelegate.h +++ b/MuteUnmuteMic/AppDelegate.h @@ -1,3 +1,10 @@ +// +// AppDelegate.h +// MuteUnmuteMic +// +// Copyright © 2015 CocoaHeads Brasil. All rights reserved. +// + #import @interface AppDelegate : NSObject diff --git a/MuteUnmuteMic/AppDelegate.m b/MuteUnmuteMic/AppDelegate.m index a822aac..2ba65cd 100644 --- a/MuteUnmuteMic/AppDelegate.m +++ b/MuteUnmuteMic/AppDelegate.m @@ -1,3 +1,10 @@ +// +// AppDelegate.m +// MuteUnmuteMic +// +// Copyright © 2015 CocoaHeads Brasil. All rights reserved. +// + #import "AppDelegate.h" #import "AudioMixer.h" diff --git a/MuteUnmuteMic/AudioMixer.c b/MuteUnmuteMic/AudioMixer.c index 81fa56e..06f9eee 100644 --- a/MuteUnmuteMic/AudioMixer.c +++ b/MuteUnmuteMic/AudioMixer.c @@ -3,7 +3,7 @@ // MuteUnmuteMic // // Created by Diogo Tridapalli on 10/5/15. -// Copyright © 2015 Gustavo Barbosa. All rights reserved. +// Copyright © 2015 CocoaHeads Brasil. All rights reserved. // #include "AudioMixer.h" diff --git a/MuteUnmuteMic/AudioMixer.h b/MuteUnmuteMic/AudioMixer.h index aaa1e48..6007229 100644 --- a/MuteUnmuteMic/AudioMixer.h +++ b/MuteUnmuteMic/AudioMixer.h @@ -3,7 +3,7 @@ // MuteUnmuteMic // // Created by Diogo Tridapalli on 10/5/15. -// Copyright © 2015 Gustavo Barbosa. All rights reserved. +// Copyright © 2015 CocoaHeads Brasil. All rights reserved. // #ifndef AudioMixer_h