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:
parent
ddd1b8eb92
commit
d788e10eb4
2 changed files with 8 additions and 6 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue