Gave higher priority to the dictionary name specified in the properties file than to the dictionary name passed as an argument.
This commit is contained in:
parent
14ad55aa3f
commit
e096aee67b
2 changed files with 42 additions and 37 deletions
|
@ -209,9 +209,7 @@ public class SwingWindowScannerFilter extends WindowScannerFilter
|
|||
break;
|
||||
default:
|
||||
System.out.println("Syntax error!");
|
||||
System.out.println("Sintaxis: java SwingWindowScannerFilter [options] arch-dict");
|
||||
System.out.println("Options:");
|
||||
System.out.println(" -simple: runs the non-swing version.");
|
||||
System.out.println("Sintaxis: java SwingWindowScannerFilter [arch-dict]");
|
||||
System.out.println(TibetanScanner.copyrightASCII);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,14 +55,21 @@ public abstract class WindowScannerFilter implements WindowListener, FocusListen
|
|||
protected Frame mainWindow;
|
||||
|
||||
/** This class is not meant to be called by itself */
|
||||
public WindowScannerFilter()
|
||||
public WindowScannerFilter(String argument)
|
||||
{
|
||||
String response, dictType;
|
||||
WhichDictionaryFrame wdf;
|
||||
|
||||
mainWindow = null;
|
||||
response = ThdlOptions.getStringOption(defOpenOption);
|
||||
|
||||
if (response==null || response.equals(""))
|
||||
{
|
||||
if (argument!=null && !argument.equals(""))
|
||||
{
|
||||
response = argument;
|
||||
}
|
||||
else
|
||||
{
|
||||
mainWindow = new Frame("Tibetan Translation Tool");
|
||||
mainWindow.show();
|
||||
|
@ -95,13 +102,13 @@ public abstract class WindowScannerFilter implements WindowListener, FocusListen
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
makeWindow (response);
|
||||
}
|
||||
|
||||
public WindowScannerFilter(String file)
|
||||
public WindowScannerFilter()
|
||||
{
|
||||
mainWindow = null;
|
||||
makeWindow (file);
|
||||
this(null);
|
||||
}
|
||||
|
||||
protected abstract WhichDictionaryFrame getWhichDictionaryFrame();
|
||||
|
|
Loading…
Reference in a new issue