1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Resaved projects

This commit is contained in:
jules 2016-02-15 15:32:09 +00:00
parent ddd1b8eb92
commit d788e10eb4
2 changed files with 8 additions and 6 deletions

View file

@ -1969,8 +1969,9 @@ public class JuceDemo extends Activity
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;
}
@ -1983,8 +1984,8 @@ public class JuceDemo extends Activity
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);
}
}

View file

@ -1969,8 +1969,9 @@ public class MidiTest extends Activity
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;
}
@ -1983,8 +1984,8 @@ public class MidiTest extends Activity
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);
}
}