@@ -30,7 +30,7 @@ public class WindowsConfig implements Serializable {
30
30
private String trademarks ;
31
31
private String txtFileVersion ;
32
32
private String txtProductVersion ;
33
- private String txtShortcutName ;
33
+ private String shortcutName ;
34
34
private boolean disableDirPage = true ;
35
35
private boolean disableProgramGroupPage = true ;
36
36
private boolean disableFinishedPage = true ;
@@ -154,12 +154,12 @@ public void setTxtProductVersion(String txtProductVersion) {
154
154
this .txtProductVersion = txtProductVersion ;
155
155
}
156
156
157
- public String getTxtShortcutName () {
158
- return txtShortcutName ;
157
+ public String getShortcutName () {
158
+ return shortcutName ;
159
159
}
160
160
161
- public void setTxtShortcutName (String txtShortcutName ) {
162
- this .txtShortcutName = txtShortcutName ;
161
+ public void setShortcutName (String shortcutName ) {
162
+ this .shortcutName = shortcutName ;
163
163
}
164
164
165
165
public String getInternalName () {
@@ -321,7 +321,7 @@ public String toString() {
321
321
+ ", internalName=" + internalName + ", language=" + language + ", originalFilename=" + originalFilename
322
322
+ ", productName=" + productName + ", productVersion=" + productVersion + ", trademarks=" + trademarks
323
323
+ ", txtFileVersion=" + txtFileVersion + ", txtProductVersion=" + txtProductVersion
324
- + ", txtShortcutName =" + txtShortcutName
324
+ + ", shortcutName =" + shortcutName
325
325
+ ", disableDirPage=" + disableDirPage + ", disableProgramGroupPage=" + disableProgramGroupPage
326
326
+ ", disableFinishedPage=" + disableFinishedPage + ", disableRunAfterInstall=" + disableRunAfterInstall
327
327
+ ", disableWelcomePage=" + disableWelcomePage + ", createDesktopIconTask=" + createDesktopIconTask
@@ -341,7 +341,7 @@ public void setDefaults(Packager packager) {
341
341
this .setFileVersion (defaultIfBlank (this .getFileVersion (), "1.0.0.0" ));
342
342
this .setTxtFileVersion (defaultIfBlank (this .getTxtFileVersion (), "" + packager .getVersion ()));
343
343
this .setProductVersion (defaultIfBlank (this .getProductVersion (), "1.0.0.0" ));
344
- this .setTxtShortcutName (defaultIfBlank (this .getTxtShortcutName (), packager .getName ()));
344
+ this .setShortcutName (defaultIfBlank (this .getShortcutName (), packager .getName ()));
345
345
this .setTxtProductVersion (defaultIfBlank (this .getTxtProductVersion (), "" + packager .getVersion ()));
346
346
this .setCompanyName (defaultIfBlank (this .getCompanyName (), packager .getOrganizationName ()));
347
347
this .setCopyright (defaultIfBlank (this .getCopyright (), packager .getOrganizationName ()));
0 commit comments