File tree Expand file tree Collapse file tree 7 files changed +1
-6
lines changed
Expand file tree Collapse file tree 7 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -34,3 +34,4 @@ xcuserdata
3434Builds
3535JuceLibraryCode
3636ci /bin
37+ .DS_Store
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ DeRez2::DeRez2(audioMasterCallback audioMaster) :
3838 _canDo.insert (" x2in2out" );
3939 setNumInputs (kNumInputs );
4040 setNumOutputs (kNumOutputs );
41- setUniqueID (kUniqueId );
4241 canProcessReplacing (); // supports output replacing
4342 canDoubleReplacing (); // supports double precision processing
4443 programsAreChunks (true );
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ class DeRez2 final : public AudioEffectX
2626 static constexpr int kNumPrograms = 0 ;
2727 static constexpr int kNumInputs = 2 ;
2828 static constexpr int kNumOutputs = 2 ;
29- static constexpr unsigned long kUniqueId = ' eerz' ; // Change this to what the AU identity is!
3029
3130 DeRez2 (audioMasterCallback audioMaster);
3231 ~DeRez2 ();
Original file line number Diff line number Diff line change @@ -120,7 +120,6 @@ FireAmp::FireAmp(audioMasterCallback audioMaster) :
120120 _canDo.insert (" x2in2out" );
121121 setNumInputs (kNumInputs );
122122 setNumOutputs (kNumOutputs );
123- setUniqueID (kUniqueId );
124123 canProcessReplacing (); // supports output replacing
125124 canDoubleReplacing (); // supports double precision processing
126125 programsAreChunks (true );
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ class FireAmp final : public AudioEffectX
2626 static constexpr int kNumPrograms = 0 ;
2727 static constexpr int kNumInputs = 2 ;
2828 static constexpr int kNumOutputs = 2 ;
29- static constexpr unsigned long kUniqueId = ' fira' ; // Change this to what the AU identity is!
3029
3130 FireAmp (audioMasterCallback audioMaster);
3231 ~FireAmp ();
Original file line number Diff line number Diff line change @@ -140,7 +140,6 @@ GrindAmp::GrindAmp(audioMasterCallback audioMaster) :
140140 _canDo.insert (" x2in2out" );
141141 setNumInputs (kNumInputs );
142142 setNumOutputs (kNumOutputs );
143- setUniqueID (kUniqueId );
144143 canProcessReplacing (); // supports output replacing
145144 canDoubleReplacing (); // supports double precision processing
146145 programsAreChunks (true );
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ class GrindAmp final : public AudioEffectX
2626 static constexpr int kNumPrograms = 0 ;
2727 static constexpr int kNumInputs = 2 ;
2828 static constexpr int kNumOutputs = 2 ;
29- static constexpr unsigned long kUniqueId = ' grda' ; // Change this to what the AU identity is!
3029
3130 GrindAmp (audioMasterCallback audioMaster);
3231 ~GrindAmp ();
You can’t perform that action at this time.
0 commit comments