[rkward-cvs] SF.net SVN: rkward:[2529] trunk/rkward/rkward/rkward.cpp
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Fri Jun 12 14:51:13 UTC 2009
Revision: 2529
http://rkward.svn.sourceforge.net/rkward/?rev=2529&view=rev
Author: tfry
Date: 2009-06-12 14:51:13 +0000 (Fri, 12 Jun 2009)
Log Message:
-----------
Add status notification box on windows
Modified Paths:
--------------
trunk/rkward/rkward/rkward.cpp
Modified: trunk/rkward/rkward/rkward.cpp
===================================================================
--- trunk/rkward/rkward/rkward.cpp 2009-06-10 20:35:07 UTC (rev 2528)
+++ trunk/rkward/rkward/rkward.cpp 2009-06-12 14:51:13 UTC (rev 2529)
@@ -181,12 +181,16 @@
void RKWardMainWindow::doPostInit () {
RK_TRACE (APP);
- // Check intallation first
+ // Check installation first
QFile resource_ver (RKCommonFunctions::getRKWardDataDir () + "resource.ver");
if (!(resource_ver.open (QIODevice::ReadOnly) && (resource_ver.read (100).trimmed () == VERSION))) {
KMessageBox::error (this, i18n ("<p>RKWard either could not find its resource files at all, or only an old version of those files. The most likely cause is that the last installation failed to place the files in the correct place. This can lead to all sorts of problems, from single missing features to complete failure to function.</p><p><b>You should quit RKWard, now, and fix your installation</b>. For help with that, see <a href=\"http://p.sf.net/rkward/compiling\">http://p.sf.net/rkward/compiling</a>.</p>"), i18n ("Broken installation"), KMessageBox::Notify | KMessageBox::AllowLink);
}
+#ifdef Q_WS_WIN
+ KMessageBox::information (this, i18n ("<p>Please note that RKWard on is not well tested on Windows, yet.</p><p>There are all sorts of known issues, and issues yet to be reported. If you'd like to help: <a href=\"http://p.sf.net/rkward/contact\">http://p.sf.net/rkward/contact</a>.</p>"), i18n ("RKWard on Windows"), "rkward_on_windows", KMessageBox::Notify | KMessageBox::AllowLink);
+#endif
+
setUpdatesEnabled (false);
readOptions();
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