@@ -30,7 +30,7 @@ public class WindowsConfig implements Serializable {
3030 private String trademarks ;
3131 private String txtFileVersion ;
3232 private String txtProductVersion ;
33- private String txtShortcutName ;
33+ private String shortcutName ;
3434 private boolean disableDirPage = true ;
3535 private boolean disableProgramGroupPage = true ;
3636 private boolean disableFinishedPage = true ;
@@ -154,12 +154,12 @@ public void setTxtProductVersion(String txtProductVersion) {
154154 this .txtProductVersion = txtProductVersion ;
155155 }
156156
157- public String getTxtShortcutName () {
158- return txtShortcutName ;
157+ public String getShortcutName () {
158+ return shortcutName ;
159159 }
160160
161- public void setTxtShortcutName (String txtShortcutName ) {
162- this .txtShortcutName = txtShortcutName ;
161+ public void setShortcutName (String shortcutName ) {
162+ this .shortcutName = shortcutName ;
163163 }
164164
165165 public String getInternalName () {
@@ -321,7 +321,7 @@ public String toString() {
321321 + ", internalName=" + internalName + ", language=" + language + ", originalFilename=" + originalFilename
322322 + ", productName=" + productName + ", productVersion=" + productVersion + ", trademarks=" + trademarks
323323 + ", txtFileVersion=" + txtFileVersion + ", txtProductVersion=" + txtProductVersion
324- + ", txtShortcutName =" + txtShortcutName
324+ + ", shortcutName =" + shortcutName
325325 + ", disableDirPage=" + disableDirPage + ", disableProgramGroupPage=" + disableProgramGroupPage
326326 + ", disableFinishedPage=" + disableFinishedPage + ", disableRunAfterInstall=" + disableRunAfterInstall
327327 + ", disableWelcomePage=" + disableWelcomePage + ", createDesktopIconTask=" + createDesktopIconTask
@@ -341,7 +341,7 @@ public void setDefaults(Packager packager) {
341341 this .setFileVersion (defaultIfBlank (this .getFileVersion (), "1.0.0.0" ));
342342 this .setTxtFileVersion (defaultIfBlank (this .getTxtFileVersion (), "" + packager .getVersion ()));
343343 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 ()));
345345 this .setTxtProductVersion (defaultIfBlank (this .getTxtProductVersion (), "" + packager .getVersion ()));
346346 this .setCompanyName (defaultIfBlank (this .getCompanyName (), packager .getOrganizationName ()));
347347 this .setCopyright (defaultIfBlank (this .getCopyright (), packager .getOrganizationName ()));
0 commit comments