[rkward-cvs] SF.net SVN: rkward:[2943] trunk/rkward/rkward/settings/ rksettingsmoduleoutput.cpp

kapatp at users.sourceforge.net kapatp at users.sourceforge.net
Tue Jul 6 01:22:05 UTC 2010


Revision: 2943
          http://rkward.svn.sourceforge.net/rkward/?rev=2943&view=rev
Author:   kapatp
Date:     2010-07-06 01:22:05 +0000 (Tue, 06 Jul 2010)

Log Message:
-----------
More descriptive settings

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

Modified: trunk/rkward/rkward/settings/rksettingsmoduleoutput.cpp
===================================================================
--- trunk/rkward/rkward/settings/rksettingsmoduleoutput.cpp	2010-07-06 00:53:38 UTC (rev 2942)
+++ trunk/rkward/rkward/settings/rksettingsmoduleoutput.cpp	2010-07-06 01:22:05 UTC (rev 2943)
@@ -96,13 +96,12 @@
 	group_layout = new QVBoxLayout (group);
 	h_layout = new QHBoxLayout (group);
 	group_layout->addLayout (h_layout);
-	h_layout->addWidget (new QLabel (i18n ("History length:"), group));
+	h_layout->addWidget (new QLabel (i18n ("Maximum number of recorded plots:"), group));
 	h_layout->addWidget (graphics_hist_max_length_box = new KIntSpinBox (1, 200, 1, graphics_hist_max_length, group));
-	h_layout->addSpacing (2*RKGlobals::spacingHint ());
-	h_layout->addWidget (new QLabel (i18n ("History size:"), group));
+	h_layout = new QHBoxLayout (group);
+	group_layout->addLayout (h_layout);
+	h_layout->addWidget (new QLabel (i18n ("Maximum size of a single recorded plot (in KB):"), group));
 	h_layout->addWidget (graphics_hist_max_plotsize_box = new KIntSpinBox (4, 20000, 4, graphics_hist_max_plotsize, group)); // in KB
-	h_layout->addWidget (new QLabel (i18n ("KiB"), group));
-	h_layout->addStretch ();
 	connect (graphics_hist_max_length_box, SIGNAL (valueChanged (int)), this, SLOT (boxChanged (int)));
 	connect (graphics_hist_max_plotsize_box, SIGNAL (valueChanged (int)), this, SLOT (boxChanged (int)));
 


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