r3059 - in trunk/lima-swing: . src/main/java/org/chorem/lima/ui
Author: echatellier Date: 2010-12-01 10:28:32 +0100 (Wed, 01 Dec 2010) New Revision: 3059 Url: http://chorem.org/repositories/revision/lima/3059 Log: Fix license file names Modified: trunk/lima-swing/pom.xml trunk/lima-swing/src/main/java/org/chorem/lima/ui/MainViewHandler.java Modified: trunk/lima-swing/pom.xml =================================================================== --- trunk/lima-swing/pom.xml 2010-12-01 09:15:28 UTC (rev 3058) +++ trunk/lima-swing/pom.xml 2010-12-01 09:28:32 UTC (rev 3059) @@ -129,12 +129,8 @@ </redmine.releaseFiles> <license.generateBundle>true</license.generateBundle> - <license.bundleLicensePath> - META-INF/lima-main-LICENSE.txt - </license.bundleLicensePath> - <license.bundleThirdPartyPath> - META-INF/lima-main-THIRD-PARTY.txt - </license.bundleThirdPartyPath> + <license.bundleLicensePath>META-INF/lima-swing-LICENSE.txt</license.bundleLicensePath> + <license.bundleThirdPartyPath>META-INF/lima-swing-THIRD-PARTY.txt</license.bundleThirdPartyPath> </properties> Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/MainViewHandler.java =================================================================== --- trunk/lima-swing/src/main/java/org/chorem/lima/ui/MainViewHandler.java 2010-12-01 09:15:28 UTC (rev 3058) +++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/MainViewHandler.java 2010-12-01 09:28:32 UTC (rev 3059) @@ -201,19 +201,13 @@ public void showAbout(MainView ui) { - AboutPanel about = new AboutPanel()/* { - @Override - public void buildTopPanel() { - setIconPath("/icons/lima.png"); - super.buildTopPanel(); - } - }*/; + AboutPanel about = new AboutPanel(); about.setTitle(_("lima.title.about")); about.setAboutText(_("lima.title.about.description")); about.setBottomText(ui.getConfig().getCopyrightText()); about.setIconPath("/icons/lima.png"); - about.setLicenseFile("META-INF/lima-main-LICENSE.txt"); - about.setThirdpartyFile("META-INF/lima-main-THIRD-PARTY.txt"); + about.setLicenseFile("META-INF/lima-swing-LICENSE.txt"); + about.setThirdpartyFile("META-INF/lima-swing-THIRD-PARTY.txt"); about.init(); about.showInDialog(ui, true); } @@ -296,13 +290,11 @@ AccountView accountView = new AccountView(mainView); mainView.showTab(_("lima.charts.account"), accountView); } + /** * Show account tree table view to create or modify accounts * @param rootContext */ - - - public void showEntryBookView(JAXXContext rootContext) { MainView mainView = getUI(rootContext); EntryBookView entryBookView= new EntryBookView(mainView);
participants (1)
-
echatellier@users.chorem.org