| @@ -1969,8 +1969,9 @@ public class JuceDemo extends Activity | |||||
| private static class JuceThread extends Thread | private static class JuceThread extends Thread | ||||
| { | { | ||||
| public JuceThread (long host) | |||||
| public JuceThread (long host, String threadName, long threadStackSize) | |||||
| { | { | ||||
| super (null, null, threadName, threadStackSize); | |||||
| _this = host; | _this = host; | ||||
| } | } | ||||
| @@ -1983,8 +1984,8 @@ public class JuceDemo extends Activity | |||||
| private long _this; | private long _this; | ||||
| } | } | ||||
| public final Thread createNewThread(long host) | |||||
| public final Thread createNewThread(long host, String threadName, long threadStackSize) | |||||
| { | { | ||||
| return new JuceThread(host); | |||||
| return new JuceThread(host, threadName, threadStackSize); | |||||
| } | } | ||||
| } | } | ||||
| @@ -1969,8 +1969,9 @@ public class MidiTest extends Activity | |||||
| private static class JuceThread extends Thread | private static class JuceThread extends Thread | ||||
| { | { | ||||
| public JuceThread (long host) | |||||
| public JuceThread (long host, String threadName, long threadStackSize) | |||||
| { | { | ||||
| super (null, null, threadName, threadStackSize); | |||||
| _this = host; | _this = host; | ||||
| } | } | ||||
| @@ -1983,8 +1984,8 @@ public class MidiTest extends Activity | |||||
| private long _this; | private long _this; | ||||
| } | } | ||||
| public final Thread createNewThread(long host) | |||||
| public final Thread createNewThread(long host, String threadName, long threadStackSize) | |||||
| { | { | ||||
| return new JuceThread(host); | |||||
| return new JuceThread(host, threadName, threadStackSize); | |||||
| } | } | ||||
| } | } | ||||