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

tfry at users.sourceforge.net tfry at users.sourceforge.net
Mon Oct 30 13:16:43 UTC 2006


Revision: 905
          http://svn.sourceforge.net/rkward/?rev=905&view=rev
Author:   tfry
Date:     2006-10-30 05:16:32 -0800 (Mon, 30 Oct 2006)

Log Message:
-----------
small cleanups and preparation for a new preview release

Modified Paths:
--------------
    trunk/rkward/ChangeLog
    trunk/rkward/TODO
    trunk/rkward/configure.in.in
    trunk/rkward/rkward/rbackend/rpackages/rkward/DESCRIPTION
    trunk/rkward/rkward/windows/rkcommandeditorwindow.cpp

Modified: trunk/rkward/ChangeLog
===================================================================
--- trunk/rkward/ChangeLog	2006-10-30 12:58:44 UTC (rev 904)
+++ trunk/rkward/ChangeLog	2006-10-30 13:16:32 UTC (rev 905)
@@ -1,3 +1,4 @@
+- fix (some?) compilation problems with KDE 3.2
 - when packages have been newly installed, show them in the load / unload packages tab immediately
 - fix to plugin input lines sizing, and visibility of scrollbars
 - on startup, show window maximized if not size stored (i.e. very first startup)

Modified: trunk/rkward/TODO
===================================================================
--- trunk/rkward/TODO	2006-10-30 12:58:44 UTC (rev 904)
+++ trunk/rkward/TODO	2006-10-30 13:16:32 UTC (rev 905)
@@ -57,7 +57,6 @@
 	- Script editor:
 		- allow to pipe scripts to the console (console might have to be made smarter about large pasted commands, first)
 	- RKConsole / Script editor:
-		- function arg hints in script editor
 		- highlight only valid function names
 	- RKHelpDlg:
 		- in the mid term, this should probably be renamed and moved to windows

Modified: trunk/rkward/configure.in.in
===================================================================
--- trunk/rkward/configure.in.in	2006-10-30 12:58:44 UTC (rev 904)
+++ trunk/rkward/configure.in.in	2006-10-30 13:16:32 UTC (rev 905)
@@ -1,6 +1,6 @@
 #MIN_CONFIG(3)
 
-AM_INIT_AUTOMAKE(rkward,0.4.0)
+AM_INIT_AUTOMAKE(rkward,0.4.1pre1)
 
 dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__
 dnl CFLAGS="$NOOPT_CFLAGS" dnl __kdevelop[noopt]__

Modified: trunk/rkward/rkward/rbackend/rpackages/rkward/DESCRIPTION
===================================================================
--- trunk/rkward/rkward/rbackend/rpackages/rkward/DESCRIPTION	2006-10-30 12:58:44 UTC (rev 904)
+++ trunk/rkward/rkward/rbackend/rpackages/rkward/DESCRIPTION	2006-10-30 13:16:32 UTC (rev 905)
@@ -1,6 +1,6 @@
 Package: rkward
 Title: Provides some helper functions for the RKWard frontend
-Version: 0.4.0
+Version: 0.4.1
 Author: Thomas Friedrichsmeier and the RKWard Team
 Description: Most of the functions in here are really only needed for the internal communication between RKWard and R. There are also a few functions, which allow access to RKWard or RKWard specifics. Most is not implemented, yet.
 Maintainer: RKWard-devel mailing list <rkward-devel at lists.sourceforge.net>

Modified: trunk/rkward/rkward/windows/rkcommandeditorwindow.cpp
===================================================================
--- trunk/rkward/rkward/windows/rkcommandeditorwindow.cpp	2006-10-30 12:58:44 UTC (rev 904)
+++ trunk/rkward/rkward/windows/rkcommandeditorwindow.cpp	2006-10-30 13:16:32 UTC (rev 905)
@@ -142,7 +142,7 @@
 
 QString RKCommandEditorWindow::getSelection () {
 	RK_TRACE (COMMANDEDITOR);
-	return selectionInterface (m_doc)->selection ();
+	return m_doc->selection ();
 }
 
 QString RKCommandEditorWindow::getLine () {
@@ -152,7 +152,7 @@
 
 QString RKCommandEditorWindow::getText () {
 	RK_TRACE (COMMANDEDITOR);
-	return editInterface (m_doc)->text ();
+	return m_doc->text ();
 }
 
 void RKCommandEditorWindow::copy () {


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