Skip to content

Commit

Permalink
fixed wrong constructor calls
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Oct 3, 2024
1 parent 8c03b1f commit dd36c73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
}// </editor-fold>//GEN-END:initComponents

private void cmdForcePreviewActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdForcePreviewActionPerformed
new Thread(new LoadDocumentPreviewThread(null, this.caseDto, this.docDto, this.readOnly, this.pnlPreview, true, this.saveCallback)).start();
new Thread(new LoadDocumentPreviewThread(this.caseDto, this.docDto, this.readOnly, this.pnlPreview, true, this.saveCallback)).start();
}//GEN-LAST:event_cmdForcePreviewActionPerformed

private void cmdPreviewSettingsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cmdPreviewSettingsActionPerformed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4670,7 +4670,7 @@ public void updateDocumentPreview() {
} else {
ArchiveFileDocumentsBean value = selectedDocs.get(0);

new Thread(new LoadDocumentPreviewThread(this.splitDocumentsMain, this.dto, value, this.readOnly, this.pnlPreview, false, this)).start();
new Thread(new LoadDocumentPreviewThread(this.dto, value, this.readOnly, this.pnlPreview, false, this)).start();
}
}

Expand Down

0 comments on commit dd36c73

Please sign in to comment.