#772: closing loading dialog now cancels the loading of the swf

#762:export pcode with diffren extension
This commit is contained in:
honfika@gmail.com
2015-04-26 12:09:59 +02:00
parent e497b58f81
commit 62be884e42
14 changed files with 201 additions and 150 deletions

View File

@@ -830,6 +830,10 @@ public class Helper {
}
public static boolean contains(int[] array, int value) {
if (array == null) {
return false;
}
for (int i : array) {
if (i == value) {
return true;