fix: no input file from LO

This commit is contained in:
Georgy Litvinov 2021-08-10 14:27:38 +02:00
parent 8621834a5b
commit 9d007c9188

View file

@ -53,16 +53,6 @@ public class ConfigurationWindow extends JFrame {
* Create the application.
*/
public ConfigurationWindow() {
initializeConfigurationWindow();
}
public ConfigurationWindow(XComponentContext context, ODTDocument doc) {
this.context = context;
initializeConfigurationWindow();
storage.setSourceFileName(doc.getFileName());
}
private void initializeConfigurationWindow() {
this.localizer = new Localizer();
initializePreferences();
setTitle(localizer.getTranslation(CONVERTER_TITLE_LABEL));
@ -71,7 +61,19 @@ public class ConfigurationWindow extends JFrame {
initComponents();
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() {
storage = new PreferencesStorage();
}