[PC-BSD Commits] r5247 - pcbsd/trunk/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Fri Dec 4 19:19:55 PST 2009
Author: kris
Date: 2009-12-04 19:19:55 -0800 (Fri, 04 Dec 2009)
New Revision: 5247
Modified:
pcbsd/trunk/SysInstaller/backend.cpp
Log:
Truncate the backend return of timezones in the GUI, some of them are way too wordy, don't need all that in the comboBox
Modified: pcbsd/trunk/SysInstaller/backend.cpp
===================================================================
--- pcbsd/trunk/SysInstaller/backend.cpp 2009-12-05 03:16:42 UTC (rev 5246)
+++ pcbsd/trunk/SysInstaller/backend.cpp 2009-12-05 03:19:55 UTC (rev 5247)
@@ -81,6 +81,8 @@
if (p.waitForFinished()) {
while (p.canReadLine()) {
line = p.readLine();
+ line.simplified();
+ line.truncate(65);
_zones.append(line);
}
}
More information about the Commits
mailing list