[rkward-cvs] SF.net SVN: rkward: [1106] trunk/rkward/rkward

tfry at users.sourceforge.net tfry at users.sourceforge.net
Mon Jan 8 21:34:47 UTC 2007


Revision: 1106
          http://svn.sourceforge.net/rkward/?rev=1106&view=rev
Author:   tfry
Date:     2007-01-08 13:34:47 -0800 (Mon, 08 Jan 2007)

Log Message:
-----------
clean up bogus warnings, and fix descriptive statistics documentation

Modified Paths:
--------------
    trunk/rkward/rkward/plugins/descriptive/descriptive_statistics.rkh
    trunk/rkward/rkward/windows/rkhtmlwindow.cpp

Modified: trunk/rkward/rkward/plugins/descriptive/descriptive_statistics.rkh
===================================================================
--- trunk/rkward/rkward/plugins/descriptive/descriptive_statistics.rkh	2007-01-08 21:25:29 UTC (rev 1105)
+++ trunk/rkward/rkward/plugins/descriptive/descriptive_statistics.rkh	2007-01-08 21:34:47 UTC (rev 1106)
@@ -21,7 +21,7 @@
 		<caption id="tab_median_mad"/>
 		<setting id="median">Should the median value be computed?</setting>
 		<setting id="mad">Compute the median absolute deviation, i.e., the (lo-/hi-) median of the absolute deviations from the median, and (by default) adjust by a factor for asymptotically normal consistency (see <link href="rhelp://mad"/>).</setting>
-		<setting id="constant">Scale factor to use when computing the median absolute deviation</setting>
+		<setting id="constMad">Scale factor to use when computing the median absolute deviation</setting>
 		<setting id="mad_type">How to treat even size samples: Average the two middle values, take the lower, or take the higher</setting>
 		<caption id="tab_range_etc"/>
 		<setting id="range">Compute the range, i.e. lowest and highest value</setting>

Modified: trunk/rkward/rkward/windows/rkhtmlwindow.cpp
===================================================================
--- trunk/rkward/rkward/windows/rkhtmlwindow.cpp	2007-01-08 21:25:29 UTC (rev 1105)
+++ trunk/rkward/rkward/windows/rkhtmlwindow.cpp	2007-01-08 21:34:47 UTC (rev 1106)
@@ -493,7 +493,7 @@
 				for (XMLChildList::iterator it = setting_elements.begin (); it != setting_elements.end (); ++it) {
 					if ((*it).tagName () == "setting") {
 						QString id = help_xml->getStringAttribute (*it, "id", QString (), DL_WARNING);
-						QString title = help_xml->getStringAttribute (*it, "title", QString (), DL_WARNING);
+						QString title = help_xml->getStringAttribute (*it, "title", QString (), DL_INFO);
 						if (title.isEmpty ()) {
 							QDomElement source_element = component_xml->findElementWithAttribute (component_doc_element, "id", id, true, DL_WARNING);
 							title = component_xml->getStringAttribute (source_element, "label", i18n ("Unnamed GUI element"), DL_WARNING);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the rkward-tracker mailing list