From: <doc...@us...> - 2007-11-05 19:44:45
|
Revision: 185 http://openpcl.svn.sourceforge.net/openpcl/?rev=185&view=rev Author: documentsystems Date: 2007-11-05 11:44:28 -0800 (Mon, 05 Nov 2007) Log Message: ----------- Howard Hoagland. Changed the Save icon in the toolbar to call actionSaveAs() instead of actionSaveOnePageToPclFile(). Modified Paths: -------------- openpcl/src/com/openpcl/viewer/toolbar/PosToolBar.java Modified: openpcl/src/com/openpcl/viewer/toolbar/PosToolBar.java =================================================================== --- openpcl/src/com/openpcl/viewer/toolbar/PosToolBar.java 2007-11-05 19:43:59 UTC (rev 184) +++ openpcl/src/com/openpcl/viewer/toolbar/PosToolBar.java 2007-11-05 19:44:28 UTC (rev 185) @@ -166,9 +166,9 @@ /** Save as PCL file toolbar button */ protected JButton createSaveOnePageToPclFileButton() { - JButton tJButton = createToolBarButton("V221Save.png", "Save one page to PCL file"); + JButton tJButton = createToolBarButton("V221Save.png", "Save As"); tJButton.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) {mOpenPCLViewer.actionSaveOnePageToPclFile();} + public void actionPerformed(ActionEvent e) {mOpenPCLViewer.actionSaveAs();} }); return tJButton; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |