[rkward-cvs] SF.net SVN: rkward: [2275] branches/KDE4_port/rkward

tfry at users.sourceforge.net tfry at users.sourceforge.net
Wed Nov 28 14:42:04 UTC 2007


Revision: 2275
          http://rkward.svn.sourceforge.net/rkward/?rev=2275&view=rev
Author:   tfry
Date:     2007-11-28 06:42:02 -0800 (Wed, 28 Nov 2007)

Log Message:
-----------
Assorted small stuff

Modified Paths:
--------------
    branches/KDE4_port/rkward/core/robject.cpp
    branches/KDE4_port/rkward/dialogs/rkloadlibsdialog.cpp
    branches/KDE4_port/rkward/misc/rkstandardicons.h
    branches/KDE4_port/rkward/plugin/rkstandardcomponent.cpp
    branches/KDE4_port/rkward/rbackend/rcommandstack.cpp
    branches/KDE4_port/rkward/rbackend/rcommandstack.h
    branches/KDE4_port/rkward/rkconsole.cpp
    branches/KDE4_port/rkward/rkconsole.h
    branches/KDE4_port/rkward/windows/rcontrolwindow.h
    branches/KDE4_port/rkward/windows/rkhtmlwindow.cpp

Modified: branches/KDE4_port/rkward/core/robject.cpp
===================================================================
--- branches/KDE4_port/rkward/core/robject.cpp	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/core/robject.cpp	2007-11-28 14:42:02 UTC (rev 2275)
@@ -15,12 +15,11 @@
  *                                                                         *
  ***************************************************************************/
 
-#include <qregexp.h>
-#include <klocale.h>
 
 #include "robject.h"
 
-#include "rcontainerobject.h"
+#include <qregexp.h>
+#include <klocale.h>
 
 #include "../rbackend/rinterface.h"
 #include "../rkglobals.h"

Modified: branches/KDE4_port/rkward/dialogs/rkloadlibsdialog.cpp
===================================================================
--- branches/KDE4_port/rkward/dialogs/rkloadlibsdialog.cpp	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/dialogs/rkloadlibsdialog.cpp	2007-11-28 14:42:02 UTC (rev 2275)
@@ -768,7 +768,6 @@
 
 #include <qcombobox.h>
 #include <qfileinfo.h>
-#include <kmessagebox.h>
 
 PackageInstallParamsWidget::PackageInstallParamsWidget (QWidget *parent, bool ask_depends) : QWidget (parent) {
 	RK_TRACE (DIALOGS);

Modified: branches/KDE4_port/rkward/misc/rkstandardicons.h
===================================================================
--- branches/KDE4_port/rkward/misc/rkstandardicons.h	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/misc/rkstandardicons.h	2007-11-28 14:42:02 UTC (rev 2275)
@@ -25,7 +25,7 @@
 
 /** This class (it's a namespace, really, except I did not figure out how to put the storage array in it as a "private" member) provides easy access to the icons used in RKWard. This helps staying consistent across the whole application.
 
-Also, since QIcons are only loaded on demand, and implicitely shared, this should save some ressources for icons that are used often.
+Also, since QIcons are only loaded on demand, and implicitely shared, this should save some resources for icons that are used often.
 
 Eventually all icons (even those that are only used once, so far) should be added, here. All direct constructions of QIcons (or KIconLoader) should be removed elsewhere.
 

Modified: branches/KDE4_port/rkward/plugin/rkstandardcomponent.cpp
===================================================================
--- branches/KDE4_port/rkward/plugin/rkstandardcomponent.cpp	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/plugin/rkstandardcomponent.cpp	2007-11-28 14:42:02 UTC (rev 2275)
@@ -97,7 +97,7 @@
 	connect (backend, SIGNAL (haveError ()), this, SLOT (deleteLater ()));
 	if (!backend->initialize (code, parent_component == 0)) return;
 
-	// check for existance of help file
+	// check for existence of help file
 	element = xml->getChildElement (doc_element, "help", DL_WARNING);
 	QString dummy = QFileInfo (filename).path() + '/' + xml->getStringAttribute (element, "file", "::nosuchfile::", DL_INFO);
 	have_help = QFileInfo (dummy).exists ();

Modified: branches/KDE4_port/rkward/rbackend/rcommandstack.cpp
===================================================================
--- branches/KDE4_port/rkward/rbackend/rcommandstack.cpp	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/rbackend/rcommandstack.cpp	2007-11-28 14:42:02 UTC (rev 2275)
@@ -496,7 +496,7 @@
 	RK_ASSERT (!RInterface::inRThread ());
 
 	MUTEX_LOCK;
-// We're playing silly const games, here, as the reimplemenations from QAbstractItemModel need to be const.
+// We're playing silly const games, here, as the reimplementations from QAbstractItemModel need to be const.
 // Well, we're not really changing anything, though, just keeping track of the mutex lock.
 	bool *cheat = const_cast<bool*> (&have_mutex_lock);
 	*cheat = true;

Modified: branches/KDE4_port/rkward/rbackend/rcommandstack.h
===================================================================
--- branches/KDE4_port/rkward/rbackend/rcommandstack.h	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/rbackend/rcommandstack.h	2007-11-28 14:42:02 UTC (rev 2275)
@@ -77,7 +77,7 @@
 - All insertions / removals are signalled to the (single) model
 - it is ok for the model to be slow.
 - the model keeps track of (the number of) listeners, and does not do anything unless there are any listeners (including walking the stack)
-- RControlWindow will only be constructed on show, and destructed on hide, so as not to eat ressources
+- RControlWindow will only be constructed on show, and destructed on hide, so as not to eat resources
 
 @author Thomas Friedrichsmeier
 */

Modified: branches/KDE4_port/rkward/rkconsole.cpp
===================================================================
--- branches/KDE4_port/rkward/rkconsole.cpp	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/rkconsole.cpp	2007-11-28 14:42:02 UTC (rev 2275)
@@ -1,5 +1,5 @@
 /***************************************************************************
-                          robjectbrowser  -  description
+                          rkconsole  -  description
                              -------------------
     begin                : Thu Aug 19 2004
     copyright            : (C) 2004, 2006, 2007 by Thomas Friedrichsmeier

Modified: branches/KDE4_port/rkward/rkconsole.h
===================================================================
--- branches/KDE4_port/rkward/rkconsole.h	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/rkconsole.h	2007-11-28 14:42:02 UTC (rev 2275)
@@ -1,5 +1,5 @@
 /***************************************************************************
-                          robjectbrowser  -  description
+                          rkconsole  -  description
                              -------------------
     begin                : Thu Aug 19 2004
     copyright            : (C) 2004, 2006, 2007 by Thomas Friedrichsmeier
@@ -98,7 +98,7 @@
 	QStringList commands_history;
 /** current position in the commands history */
 	QStringList::const_iterator commands_history_position;
-/** A flag to indicate wheter the command was edited while scrolling in the history */ 
+/** A flag to indicate whether the command was edited while scrolling in the history */ 
 	bool command_edited;
 /** The last line in the history is special, in that it is stored before it is submitted, but not permanently so */
 	QString history_editing_line;

Modified: branches/KDE4_port/rkward/windows/rcontrolwindow.h
===================================================================
--- branches/KDE4_port/rkward/windows/rcontrolwindow.h	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/windows/rcontrolwindow.h	2007-11-28 14:42:02 UTC (rev 2275)
@@ -50,7 +50,7 @@
 
 /** reimplemented to start listening to the RCommandStackModel when showing. */
 	void showEvent (QShowEvent *e);
-/** when hidden, disconnect from the RCommandStackModel to save ressources */
+/** when hidden, disconnect from the RCommandStackModel to save resources */
 	void hideEvent (QHideEvent *e);
 /** Static reference to the control window */
 	static RControlWindow* getControl () { return control_window; };

Modified: branches/KDE4_port/rkward/windows/rkhtmlwindow.cpp
===================================================================
--- branches/KDE4_port/rkward/windows/rkhtmlwindow.cpp	2007-11-26 13:37:42 UTC (rev 2274)
+++ branches/KDE4_port/rkward/windows/rkhtmlwindow.cpp	2007-11-28 14:42:02 UTC (rev 2275)
@@ -244,7 +244,7 @@
 	RK_TRACE (APP);
 
 	type = RKMDIWindow::OutputWindow;
-	// for this window, we need to set it explicitely, as the logic in RKHTMLWindow though we are an RKHTMLWindow, only
+	// for this window, we need to set it explicitly, as the logic in RKHTMLWindow though we are an RKHTMLWindow, only
 	setWindowIcon (RKStandardIcons::getIcon (RKStandardIcons::WindowOutput));
 	// strip down the khtmlpart's GUI. remove some stuff we definitely don't need.
 	RKCommonFunctions::removeContainers (khtmlpart, QString ("tools,security,extraToolBar,saveBackground,saveFrame,printFrame,kget_menu").split (','), true);


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