[QGIS Commit] r12154 - in trunk/qgis/src: app ui

svn_qgis at osgeo.org svn_qgis at osgeo.org
Mon Nov 16 17:59:43 EST 2009


Author: gsherman
Date: 2009-11-16 17:59:41 -0500 (Mon, 16 Nov 2009)
New Revision: 12154

Modified:
   trunk/qgis/src/app/qgsabout.cpp
   trunk/qgis/src/ui/qgsabout.ui
Log:
Fix wrapping of developer names in the about box so each name is on a new row of the listview, rather than all names in a single row.

Modified: trunk/qgis/src/app/qgsabout.cpp
===================================================================
--- trunk/qgis/src/app/qgsabout.cpp	2009-11-16 22:20:24 UTC (rev 12153)
+++ trunk/qgis/src/app/qgsabout.cpp	2009-11-16 22:59:41 UTC (rev 12154)
@@ -74,7 +74,7 @@
       //ignore the line if it starts with a hash....
       if ( line.left( 1 ) == "#" ) continue;
       QStringList myTokens = line.split( "\t", QString::SkipEmptyParts );
-      lines += myTokens[0];
+      lines << myTokens[0];
     }
     file.close();
     lstDevelopers->clear();

Modified: trunk/qgis/src/ui/qgsabout.ui
===================================================================
--- trunk/qgis/src/ui/qgsabout.ui	2009-11-16 22:20:24 UTC (rev 12153)
+++ trunk/qgis/src/ui/qgsabout.ui	2009-11-16 22:59:41 UTC (rev 12154)
@@ -191,7 +191,7 @@
           <bool>true</bool>
          </property>
          <property name="isWrapping" stdset="0" >
-          <bool>true</bool>
+          <bool>false</bool>
          </property>
         </widget>
        </item>



More information about the QGIS-commit mailing list