[Mathlib-commitlog] SF.net SVN: mathlib:[732] JMathLib/trunk/src/jmathlib/ui/awt/GUI.java
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-23 20:23:44
|
Revision: 732
http://mathlib.svn.sourceforge.net/mathlib/?rev=732&view=rev
Author: st_mueller
Date: 2009-01-23 20:23:41 +0000 (Fri, 23 Jan 2009)
Log Message:
-----------
check upper and lower case of function names: e.g. sin is unequal to SIN
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/ui/awt/GUI.java
Modified: JMathLib/trunk/src/jmathlib/ui/awt/GUI.java
===================================================================
--- JMathLib/trunk/src/jmathlib/ui/awt/GUI.java 2009-01-23 20:11:12 UTC (rev 731)
+++ JMathLib/trunk/src/jmathlib/ui/awt/GUI.java 2009-01-23 20:23:41 UTC (rev 732)
@@ -80,7 +80,7 @@
}
else if (o == checkForUpdatesMenuItem)
{
- String answerString = interpreter.executeExpression("checkForUpdates()");
+ String answerString = interpreter.executeExpression("checkforupdates()");
answer.displayText(answerString);
answer.displayPrompt();
}
@@ -233,7 +233,7 @@
answer.displayPrompt();
// silent check for updates
- interpreter.executeExpression("checkForUpdates('-silent')");
+ interpreter.executeExpression("checkforupdates('-silent')");
this.setTitle(TITLE + " - Console Window");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|