Skip to content

Commit

Permalink
changed method signatures. #2721 #2722 #2723
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Dec 5, 2024
1 parent bc8f97e commit c715631
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c715631

Please sign in to comment.