asX.swfs added to recompile test, actionpanel initalization shoud be called from UI thread, other small fixes

This commit is contained in:
honfika@gmail.com
2014-11-23 08:48:12 +01:00
parent 745044d2e2
commit 76d8a13fb6
7 changed files with 61 additions and 64 deletions

View File

@@ -160,9 +160,12 @@ public class RecompileTest {
return name.toLowerCase().endsWith(".swf");
}
});
Object[][] ret = new Object[files.length][1];
Object[][] ret = new Object[files.length + 2][1];
ret[0][0] = "..\\as2\\as2.swf";
ret[1][0] = "..\\as3\\as3.swf";
ret[1][0] = ret[0][0]; // todo: remove this line
for (int f = 0; f < files.length; f++) {
ret[f][0] = files[f].getName();
ret[f + 2][0] = files[f].getName();
}
return ret;
}