diff --git a/j-lawyer-client/src/com/jdimension/jlawyer/client/assistant/AssistantChatDialog.java b/j-lawyer-client/src/com/jdimension/jlawyer/client/assistant/AssistantChatDialog.java index 275e23cb7..16a36a489 100644 --- a/j-lawyer-client/src/com/jdimension/jlawyer/client/assistant/AssistantChatDialog.java +++ b/j-lawyer-client/src/com/jdimension/jlawyer/client/assistant/AssistantChatDialog.java @@ -1332,7 +1332,7 @@ private void cmdNewDocumentActionPerformed(java.awt.event.ActionEvent evt) {//GE if (this.caseView != null) { if (this.pnlMessages.getComponentCount() > 0) { AiChatMessagePanel p = (AiChatMessagePanel) this.pnlMessages.getComponent(this.pnlMessages.getComponentCount() - 1); - this.caseView.newDocumentDialog(null, null, null, null, null, null, p.getMessage().getContent()); + this.caseView.newDocumentDialog(null, null, null, null, null, null, null, p.getMessage().getContent()); } } }//GEN-LAST:event_cmdNewDocumentActionPerformed diff --git a/j-lawyer-client/src/com/jdimension/jlawyer/client/assistant/AssistantGenerateDialog.java b/j-lawyer-client/src/com/jdimension/jlawyer/client/assistant/AssistantGenerateDialog.java index c1184d1db..9e20e2117 100644 --- a/j-lawyer-client/src/com/jdimension/jlawyer/client/assistant/AssistantGenerateDialog.java +++ b/j-lawyer-client/src/com/jdimension/jlawyer/client/assistant/AssistantGenerateDialog.java @@ -1353,7 +1353,7 @@ private void cmdInterruptActionPerformed(java.awt.event.ActionEvent evt) {//GEN- private void cmdNewDocumentActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdNewDocumentActionPerformed if(this.caseView!=null) - this.caseView.newDocumentDialog(null, null, null, null, null, null, this.taResult.getText()); + this.caseView.newDocumentDialog(null, null, null, null, null, null, null, this.taResult.getText()); }//GEN-LAST:event_cmdNewDocumentActionPerformed /** diff --git a/j-lawyer-client/src/com/jdimension/jlawyer/client/editors/documents/viewer/SoundplayerPanel.java b/j-lawyer-client/src/com/jdimension/jlawyer/client/editors/documents/viewer/SoundplayerPanel.java index 407bcfe86..68301c269 100644 --- a/j-lawyer-client/src/com/jdimension/jlawyer/client/editors/documents/viewer/SoundplayerPanel.java +++ b/j-lawyer-client/src/com/jdimension/jlawyer/client/editors/documents/viewer/SoundplayerPanel.java @@ -888,7 +888,7 @@ private void cmdAssistantMouseReleased(java.awt.event.MouseEvent evt) {//GEN-FIR private void cmdNewDocumentActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdNewDocumentActionPerformed if (this.saveCallback != null) { if (this.saveCallback instanceof EditArchiveFileDetailsPanel) { - ((EditArchiveFileDetailsPanel) this.saveCallback).newDocumentDialog(null, null, null, null, null, null, this.taTranscription.getText()); + ((EditArchiveFileDetailsPanel) this.saveCallback).newDocumentDialog(null, null, null, null, null, null, null, this.taTranscription.getText()); } } }//GEN-LAST:event_cmdNewDocumentActionPerformed diff --git a/j-lawyer-client/src/com/jdimension/jlawyer/client/plugins/calculation/GenericCalculationCallback.java b/j-lawyer-client/src/com/jdimension/jlawyer/client/plugins/calculation/GenericCalculationCallback.java index c59e84f48..df9262059 100644 --- a/j-lawyer-client/src/com/jdimension/jlawyer/client/plugins/calculation/GenericCalculationCallback.java +++ b/j-lawyer-client/src/com/jdimension/jlawyer/client/plugins/calculation/GenericCalculationCallback.java @@ -770,7 +770,7 @@ public void processResultToDocument(GenericCalculationTable table, Container c) ((ArchiveFilePanel) editor).setArchiveFileDTO(this.selectedCase); ((ArchiveFilePanel) editor).setOpenedFromEditorClass(DesktopPanel.class.getName()); EditorsRegistry.getInstance().setMainEditorsPaneView(editor); - ((ArchiveFilePanel) editor).newDocumentDialog(table, null, null, null,null, null, null); + ((ArchiveFilePanel) editor).newDocumentDialog(table, null, null, null,null, null, null, null); } catch (Exception ex) { log.error("Error creating editor from class " + EditArchiveFileDetailsPanel.class.getName(), ex); diff --git a/j-lawyer-client/src/com/jdimension/jlawyer/client/plugins/form/FormPluginCallback.java b/j-lawyer-client/src/com/jdimension/jlawyer/client/plugins/form/FormPluginCallback.java index fe098c6fc..637f86a05 100644 --- a/j-lawyer-client/src/com/jdimension/jlawyer/client/plugins/form/FormPluginCallback.java +++ b/j-lawyer-client/src/com/jdimension/jlawyer/client/plugins/form/FormPluginCallback.java @@ -731,7 +731,7 @@ public void processResultToDocument(GenericCalculationTable table, Container c) if (EditorsRegistry.getInstance().getCurrentEditor() instanceof ArchiveFilePanel) { Object editor = EditorsRegistry.getInstance().getCurrentEditor(); - ((ArchiveFilePanel) editor).newDocumentDialog(table, null, null, null,null, null, null); + ((ArchiveFilePanel) editor).newDocumentDialog(table, null, null, null,null, null, null, null); } } catch (Exception ex) {