Skip to content

Commit

Permalink
fixed variable name. issue #2165
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Aug 20, 2024
1 parent 8e4ff8e commit 6f664e5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@
<EmptySpace min="-2" pref="3" max="-2" attributes="0"/>
<Group type="103" groupAlignment="0" attributes="0">
<Component id="cmdCreateInvoiceDocumentXml" min="-2" max="-2" attributes="0"/>
<Component id="Hochladen" alignment="0" min="-2" max="-2" attributes="0"/>
<Component id="cmdUploadInvoiceDocumentXml" alignment="0" min="-2" max="-2" attributes="0"/>
</Group>
</Group>
</Group>
Expand Down Expand Up @@ -1057,7 +1057,7 @@
<EmptySpace type="unrelated" max="-2" attributes="0"/>
<Component id="cmdCreateInvoiceDocumentXml" min="-2" max="-2" attributes="0"/>
<EmptySpace max="-2" attributes="0"/>
<Component id="Hochladen" min="-2" max="-2" attributes="0"/>
<Component id="cmdUploadInvoiceDocumentXml" min="-2" max="-2" attributes="0"/>
<EmptySpace min="-2" max="-2" attributes="0"/>
</Group>
</Group>
Expand Down Expand Up @@ -1176,7 +1176,7 @@
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="cmdCreateInvoiceDocumentXmlActionPerformed"/>
</Events>
</Component>
<Component class="javax.swing.JButton" name="Hochladen">
<Component class="javax.swing.JButton" name="cmdUploadInvoiceDocumentXml">
<Properties>
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
<Image iconType="3" name="/icons16/material/baseline_file_upload_black_48dp.png"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,7 @@ private void initComponents() {
cmdNavigateToDocumentXml = new javax.swing.JButton();
jLabel16 = new javax.swing.JLabel();
cmdCreateInvoiceDocumentXml = new javax.swing.JButton();
Hochladen = new javax.swing.JButton();
cmdUploadInvoiceDocumentXml = new javax.swing.JButton();
jPanel3 = new javax.swing.JPanel();
jScrollPane4 = new javax.swing.JScrollPane();
tblPayments = new javax.swing.JTable();
Expand Down Expand Up @@ -1758,8 +1758,8 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
}
});

Hochladen.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons16/material/baseline_file_upload_black_48dp.png"))); // NOI18N
Hochladen.setText("Hochladen");
cmdUploadInvoiceDocumentXml.setIcon(new javax.swing.ImageIcon(getClass().getResource("/icons16/material/baseline_file_upload_black_48dp.png"))); // NOI18N
cmdUploadInvoiceDocumentXml.setText("Hochladen");

javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
Expand Down Expand Up @@ -1796,7 +1796,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
.addGap(3, 3, 3)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(cmdCreateInvoiceDocumentXml)
.addComponent(Hochladen))))))
.addComponent(cmdUploadInvoiceDocumentXml))))))
.addGap(0, 597, Short.MAX_VALUE))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
.addContainerGap()
Expand Down Expand Up @@ -1826,7 +1826,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(cmdCreateInvoiceDocumentXml)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(Hochladen)
.addComponent(cmdUploadInvoiceDocumentXml)
.addContainerGap())
);

Expand Down Expand Up @@ -2792,7 +2792,6 @@ public void windowClosing(java.awt.event.WindowEvent e) {
}

// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton Hochladen;
private javax.swing.JCheckBox chkTaxes;
private javax.swing.JComboBox<String> cmbCurrency;
private javax.swing.JComboBox<String> cmbInvoicePool;
Expand All @@ -2819,6 +2818,7 @@ public void windowClosing(java.awt.event.WindowEvent e) {
private javax.swing.JButton cmdSearchRecipient;
private javax.swing.JButton cmdTimesheetPositions;
private javax.swing.JButton cmdUploadInvoiceDocumentClassic;
private javax.swing.JButton cmdUploadInvoiceDocumentXml;
private javax.swing.JButton cmdViewDocumentClassic;
private javax.swing.JButton cmdViewDocumentXml;
private javax.swing.JTextField dtCreated;
Expand Down

0 comments on commit 6f664e5

Please sign in to comment.