This commit is contained in:
2007-12-14 23:25:39 +00:00
parent d53810a1e2
commit f952a670fc
6 changed files with 127 additions and 453 deletions

View File

@ -139,7 +139,7 @@ public class AseAwkPanel extends Panel implements DropTargetListener
//ctx.setGlobal (Context.GLOBAL_CONVFMT, ret);
Argument g = ctx.getGlobal (Context.GLOBAL_CONVFMT);
ctx.setGlobal (Context.GLOBAL_CONVFMT, r2);
System.out.println (g.getStringValue());
System.out.println (g.getStringValue());
g = ctx.getGlobal (Context.GLOBAL_CONVFMT);
System.out.println (g.getStringValue());
*/
@ -448,7 +448,7 @@ public class AseAwkPanel extends Panel implements DropTargetListener
{
public void itemStateChanged (ItemEvent e)
{
String name = (String)e.getItem();
String name = ((Checkbox)e.getItem()).getLabel();
for (int i = 0; i < options.length; i++)
{
if (options[i].getName().equals(name))
@ -521,11 +521,13 @@ public class AseAwkPanel extends Panel implements DropTargetListener
{
if (osname.equals("win"))
{
jniLib.setText(System.getProperty("user.dir") + "\\lib\\" + System.mapLibraryName(libBase));
jniLib.setText(System.getProperty("user.dir") +
"\\.\\lib\\" + System.mapLibraryName(libBase));
}
else
{
jniLib.setText(System.getProperty("user.dir") + "/lib/.libs/" + System.mapLibraryName(libBase));
jniLib.setText(System.getProperty("user.dir") +
"/../lib/.libs/" + System.mapLibraryName(libBase));
}
return;