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

tfry at users.sourceforge.net tfry at users.sourceforge.net
Mon Mar 22 12:08:37 UTC 2010


Revision: 2799
          http://rkward.svn.sourceforge.net/rkward/?rev=2799&view=rev
Author:   tfry
Date:     2010-03-22 12:08:37 +0000 (Mon, 22 Mar 2010)

Log Message:
-----------
Disable the broken import data dialog on windows, until a fix is found.

Modified Paths:
--------------
    trunk/rkward/rkward/rkward.cpp

Modified: trunk/rkward/rkward/rkward.cpp
===================================================================
--- trunk/rkward/rkward/rkward.cpp	2010-03-21 20:56:48 UTC (rev 2798)
+++ trunk/rkward/rkward/rkward.cpp	2010-03-22 12:08:37 UTC (rev 2799)
@@ -325,9 +325,14 @@
 
 	fileOpenRecent = static_cast<KRecentFilesAction*> (actionCollection ()->addAction (KStandardAction::OpenRecent, "file_open_recenty", this, SLOT(slotOpenCommandEditor (const KUrl&))));
 
+#ifdef Q_WS_WIN
+	// TODO: find the cause and fix it! http://sourceforge.net/tracker/?func=detail&aid=2848341&group_id=50231&atid=459007
+#	warning TODO: import data dialog is disabled on windows due to bug in kdelibs
+#else
 	action = actionCollection ()->addAction ("import_data", this, SLOT (importData()));
 	action->setText (i18n ("Import Data"));
 	action->setStatusTip (i18n ("Import data from a variety of file formats"));
+#endif
 
 	fileOpenWorkspace = actionCollection ()->addAction (KStandardAction::Open, "file_openx", this, SLOT(slotFileOpenWorkspace()));
 	fileOpenWorkspace->setText (i18n ("Open Workspace"));


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