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

tfry at users.sf.net tfry at users.sf.net
Thu Apr 18 10:05:21 UTC 2013


Revision: 4705
          http://sourceforge.net/p/rkward/code/4705
Author:   tfry
Date:     2013-04-18 10:05:19 +0000 (Thu, 18 Apr 2013)
Log Message:
-----------
Fix various typos (patch by Yuri Chornoivan)

Modified Paths:
--------------
    trunk/rkward/packages/rkwarddev/R/tf.R
    trunk/rkward/packages/rkwarddev/man/tf.Rd
    trunk/rkward/rkward/pages/rkward_for_rkward_devs.rkh
    trunk/rkward/rkward/plugin/rkcomponentproperties.h
    trunk/rkward/rkward/plugin/rkoptionset.cpp
    trunk/rkward/rkward/plugin/rkstandardcomponent.h
    trunk/rkward/rkward/plugins/uni1.2/description.xml
    trunk/rkward/rkward/rbackend/rkrbackendprotocol_shared.h
    trunk/rkward/rkward/settings/rksettingsmodulegeneral.cpp
    trunk/rkward/rkward/windows/rkdebugmessagewindow.cpp

Modified: trunk/rkward/packages/rkwarddev/R/tf.R
===================================================================
--- trunk/rkward/packages/rkwarddev/R/tf.R	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/packages/rkwarddev/R/tf.R	2013-04-18 10:05:19 UTC (rev 4705)
@@ -11,7 +11,7 @@
 #'		set to \code{TRUE} if the box is checked, or in case \code{not=TRUE}, if the box is not checked.
 #' @param not Logical, inverses the checked status of the checkbox. In other words, set this to \code{TRUE}
 #'		if you want the option to be set if the box is not checked.
-#' @param ifelse Logical, whether the the options should be set anyway. By default, the option will only
+#' @param ifelse Logical, whether the options should be set anyway. By default, the option will only
 #'		be set in one condition. If \code{ifelse=TRUE}, it will get the inverse value in case of the alternative
 #'		condition, e.g. it will be set to either \code{not=TRUE} or \code{not=FALSE} if the box is checked or unchecked.
 #' @param false Logical or character, the value the option should, only used get if \code{ifelse=TRUE} as well.

Modified: trunk/rkward/packages/rkwarddev/man/tf.Rd
===================================================================
--- trunk/rkward/packages/rkwarddev/man/tf.Rd	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/packages/rkwarddev/man/tf.Rd	2013-04-18 10:05:19 UTC (rev 4705)
@@ -20,7 +20,7 @@
   checkbox. In other words, set this to \code{TRUE} if you
   want the option to be set if the box is not checked.}
 
-  \item{ifelse}{Logical, whether the the options should be
+  \item{ifelse}{Logical, whether the options should be
   set anyway. By default, the option will only be set in
   one condition. If \code{ifelse=TRUE}, it will get the
   inverse value in case of the alternative condition, e.g.

Modified: trunk/rkward/rkward/pages/rkward_for_rkward_devs.rkh
===================================================================
--- trunk/rkward/rkward/pages/rkward_for_rkward_devs.rkh	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/rkward/pages/rkward_for_rkward_devs.rkh	2013-04-18 10:05:19 UTC (rev 4705)
@@ -21,7 +21,7 @@
 	<related>
 <ul>
 	<li>For more functions of interest see: <link href="rkward://page/rkward_public_functions"/></li>
-	<li>Do read the the online <link href="http://sourceforge.net/apps/mediawiki/rkward/index.php?title=Developer_Information">wiki</link> as well.</li>
+	<li>Do read the online <link href="http://sourceforge.net/apps/mediawiki/rkward/index.php?title=Developer_Information">wiki</link> as well.</li>
 	<li>To write and share your own GUI dialogs, see the <link href="help:rkwardplugins/">Introduction to Writing Plugins for RKWard</link>.</li>
 </ul>
 	</related>

Modified: trunk/rkward/rkward/plugin/rkcomponentproperties.h
===================================================================
--- trunk/rkward/rkward/plugin/rkcomponentproperties.h	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/rkward/plugin/rkcomponentproperties.h	2013-04-18 10:05:19 UTC (rev 4705)
@@ -314,7 +314,7 @@
 private:
 /** check all objects currently in the list for validity. And set validity state accordingly. */
 	void validizeAll (bool silent=false);
-/** simple helper function: Check whether the the list is valid (*after* each object had been validized!), and set the valid state accordingly */
+/** simple helper function: Check whether the list is valid (*after* each object had been validized!), and set the valid state accordingly */
 	void updateValidity ();
 /** internal helper to add the object (and check it for problems).
  * @returns true, if the list was changed, false, if the object was already in the list or is 0. */

Modified: trunk/rkward/rkward/plugin/rkoptionset.cpp
===================================================================
--- trunk/rkward/rkward/plugin/rkoptionset.cpp	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/rkward/plugin/rkoptionset.cpp	2013-04-18 10:05:19 UTC (rev 4705)
@@ -34,7 +34,7 @@
 
 #include "../debug.h"
 
-#define KEYCOLUMN_UNINITIALIZED_VALUE QString ("___#!RK!___Keycol_unintialized")
+#define KEYCOLUMN_UNINITIALIZED_VALUE QString ("___#!RK!___Keycol_uninitialized")
 
 RKOptionSet::RKOptionSet (const QDomElement &element, RKComponent *parent_component, QWidget *parent_widget) : RKComponent (parent_component, parent_widget) {
 	RK_TRACE (PLUGIN);

Modified: trunk/rkward/rkward/plugin/rkstandardcomponent.h
===================================================================
--- trunk/rkward/rkward/plugin/rkstandardcomponent.h	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/rkward/plugin/rkstandardcomponent.h	2013-04-18 10:05:19 UTC (rev 4705)
@@ -130,7 +130,7 @@
 
 Notes: How does building work?
 - Builder builds the components. Simple components are built by the same builder. For embedded components, a sub-builder is invoked.
-- Simple components register their (property) connection wishes to the the builder during construction
+- Simple components register their (property) connection wishes to the builder during construction
 - Builder takes care of connecting properties
 
 Calls parent_component->addChild () for built child-components. As an exception, this may be omitted for passive components (e.g. layouting components) that do not specify an id

Modified: trunk/rkward/rkward/plugins/uni1.2/description.xml
===================================================================
--- trunk/rkward/rkward/plugins/uni1.2/description.xml	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/rkward/plugins/uni1.2/description.xml	2013-04-18 10:05:19 UTC (rev 4705)
@@ -102,7 +102,7 @@
 						</row>
 						<row>
 							<column>
-								<spinbox type="real" intial="1e-6" max_precision="6" min="0" max="1" id="tol" label="Tolerance" />
+								<spinbox type="real" initial="1e-6" max_precision="6" min="0" max="1" id="tol" label="Tolerance" />
 							</column>
 							<column>
 								<radio id="initmu" label="Initial value" >

Modified: trunk/rkward/rkward/rbackend/rkrbackendprotocol_shared.h
===================================================================
--- trunk/rkward/rkward/rbackend/rkrbackendprotocol_shared.h	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/rkward/rbackend/rkrbackendprotocol_shared.h	2013-04-18 10:05:19 UTC (rev 4705)
@@ -68,7 +68,7 @@
 /** For synchronous requests, only: The frontend-thread will set this to true (using completed()), once the request has been "completed". Important: The backend thread MUST NOT touch a request after it has been sent, and before "done" has been set to true. */
 	bool volatile done;
 	RCallbackType type;
-/** For synchronous requests, only: If the the frontend wants any commands to be executed, it will place the next one in this slot. The backend thread should keep executing commands (in a sub-eventloop) while this is non-zero. Also, the backend-thread may place here any command that has just finished. */
+/** For synchronous requests, only: If the frontend wants any commands to be executed, it will place the next one in this slot. The backend thread should keep executing commands (in a sub-eventloop) while this is non-zero. Also, the backend-thread may place here any command that has just finished. */
 	RCommandProxy *command;
 /** Any other parameters, esp. for RCallbackType::OtherRequest. Can be used in both directions. */
 	QVariantMap params;

Modified: trunk/rkward/rkward/settings/rksettingsmodulegeneral.cpp
===================================================================
--- trunk/rkward/rkward/settings/rksettingsmodulegeneral.cpp	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/rkward/settings/rksettingsmodulegeneral.cpp	2013-04-18 10:05:19 UTC (rev 4705)
@@ -86,7 +86,7 @@
 	connect (show_help_on_startup_box, SIGNAL (stateChanged (int)), this, SLOT (settingChanged()));
 	main_vbox->addWidget (show_help_on_startup_box);
 
-	QGroupBox* group_box = new QGroupBox (i18n ("Intial working directory (*)"), this);
+	QGroupBox* group_box = new QGroupBox (i18n ("Initial working directory (*)"), this);
 	QHBoxLayout *hlayout = new QHBoxLayout (group_box);
 	initial_dir_chooser = new QComboBox (group_box);
 	initial_dir_chooser->setEditable (false);

Modified: trunk/rkward/rkward/windows/rkdebugmessagewindow.cpp
===================================================================
--- trunk/rkward/rkward/windows/rkdebugmessagewindow.cpp	2013-04-16 15:44:12 UTC (rev 4704)
+++ trunk/rkward/rkward/windows/rkdebugmessagewindow.cpp	2013-04-18 10:05:19 UTC (rev 4705)
@@ -76,7 +76,7 @@
 
 		if (first) {
 			KMessageBox::information (this, i18n ("<p>This window is used for displaying RKWard related debug messages. It is targetted primarily at (plugin) developers. It does <b>not</b> offer any features for debugging R code.</p>"
-				"<p>Note that the list of message is cleared everytime you close the window.</p><p>Type and severity level of messages can be controlled from Settings->Configure RKWard->Debug</p>"), i18n ("About this window"), "inforkdebugmessagewindow");
+				"<p>Note that the list of messages is cleared everytime you close the window.</p><p>Type and severity level of messages can be controlled from Settings->Configure RKWard->Debug</p>"), i18n ("About this window"), "inforkdebugmessagewindow");
 			first = false;
 		}
 	}





More information about the rkward-tracker mailing list