[Mathlib-commitlog] SF.net SVN: mathlib:[522] JMathLib/trunk/src/jmathlib/toolbox/jmathlib/ system
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2008-12-06 16:53:35
|
Revision: 522
http://mathlib.svn.sourceforge.net/mathlib/?rev=522&view=rev
Author: st_mueller
Date: 2008-12-06 16:53:26 +0000 (Sat, 06 Dec 2008)
Log Message:
-----------
changed from GlobalProperties to LocalProperties
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/ver.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/version.java
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/ver.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/ver.java 2008-12-06 16:51:12 UTC (rev 521)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/ver.java 2008-12-06 16:53:26 UTC (rev 522)
@@ -13,19 +13,19 @@
getInterpreter().displayText("Version information for JMathLib");
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.version");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.version");
getInterpreter().displayText("version: "+s);
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.release.date");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.release.date");
getInterpreter().displayText("release date: "+s);
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.release.name");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.release.name");
getInterpreter().displayText("release name: "+s);
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.release.description");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.release.description");
getInterpreter().displayText("release description: "+s);
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.copyright");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.copyright");
getInterpreter().displayText(s);
return null;
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/version.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/version.java 2008-12-06 16:51:12 UTC (rev 521)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/version.java 2008-12-06 16:53:26 UTC (rev 522)
@@ -13,19 +13,19 @@
getInterpreter().displayText("Version information for JMathLib");
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.version");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.version");
getInterpreter().displayText("version: "+s);
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.release.date");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.release.date");
getInterpreter().displayText("release date: "+s);
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.release.name");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.release.name");
getInterpreter().displayText("release name: "+s);
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.release.description");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.release.description");
getInterpreter().displayText("release description: "+s);
- s = getInterpreter().prefs.getGlobalProperty("jmathlib.copyright");
+ s = getInterpreter().prefs.getLocalProperty("jmathlib.copyright");
getInterpreter().displayText(s);
return null;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|