fix: no input file from LO
This commit is contained in:
parent
8621834a5b
commit
9d007c9188
1 changed files with 13 additions and 11 deletions
|
@ -53,16 +53,6 @@ public class ConfigurationWindow extends JFrame {
|
||||||
* Create the application.
|
* Create the application.
|
||||||
*/
|
*/
|
||||||
public ConfigurationWindow() {
|
public ConfigurationWindow() {
|
||||||
initializeConfigurationWindow();
|
|
||||||
}
|
|
||||||
|
|
||||||
public ConfigurationWindow(XComponentContext context, ODTDocument doc) {
|
|
||||||
this.context = context;
|
|
||||||
initializeConfigurationWindow();
|
|
||||||
storage.setSourceFileName(doc.getFileName());
|
|
||||||
}
|
|
||||||
|
|
||||||
private void initializeConfigurationWindow() {
|
|
||||||
this.localizer = new Localizer();
|
this.localizer = new Localizer();
|
||||||
initializePreferences();
|
initializePreferences();
|
||||||
setTitle(localizer.getTranslation(CONVERTER_TITLE_LABEL));
|
setTitle(localizer.getTranslation(CONVERTER_TITLE_LABEL));
|
||||||
|
@ -71,7 +61,19 @@ public class ConfigurationWindow extends JFrame {
|
||||||
initComponents();
|
initComponents();
|
||||||
createEvents();
|
createEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ConfigurationWindow(XComponentContext context, ODTDocument doc) {
|
||||||
|
this.context = context;
|
||||||
|
this.localizer = new Localizer();
|
||||||
|
initializePreferences();
|
||||||
|
storage.setSourceFileName(doc.getFileName());
|
||||||
|
setTitle(localizer.getTranslation(CONVERTER_TITLE_LABEL));
|
||||||
|
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
|
||||||
|
setIconImage(Toolkit.getDefaultToolkit().getImage(ConfigurationWindow.class.getResource("/pro/litvinovg/w2phtml/gui/resources/w2phtml.png")));
|
||||||
|
initComponents();
|
||||||
|
createEvents();
|
||||||
|
}
|
||||||
|
|
||||||
private void initializePreferences() {
|
private void initializePreferences() {
|
||||||
storage = new PreferencesStorage();
|
storage = new PreferencesStorage();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue