Browse Source

Resaved projects

tags/2021-05-28
jules 9 years ago
parent
commit
d788e10eb4
2 changed files with 8 additions and 6 deletions
  1. +4
    -3
      examples/Demo/Builds/Android/src/com/juce/jucedemo/JuceDemo.java
  2. +4
    -3
      examples/MidiTest/Builds/Android/src/com/yourcompany/miditest/MidiTest.java

+ 4
- 3
examples/Demo/Builds/Android/src/com/juce/jucedemo/JuceDemo.java View File

@@ -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);
} }
} }

+ 4
- 3
examples/MidiTest/Builds/Android/src/com/yourcompany/miditest/MidiTest.java View File

@@ -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);
} }
} }

Loading…
Cancel
Save