Skip to content

Commit

Permalink
modified the donors page
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14626 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
brushtyler committed Nov 13, 2010
1 parent 51fb67b commit 64942af
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions src/app/qgsabout.cpp
Expand Up @@ -178,13 +178,11 @@ void QgsAbout::init()
if ( donorsFile.open( QIODevice::ReadOnly ) )
{
QString donorsHTML = ""
+ tr( "<p>The following individuals and institutions have contributed "
"money to fund QGIS development and other project costs</p>" )
+ "<hr>"
"<table width='100%'>"
"<tr><th>" + tr( "Name" ) + "</th>"
"<th>" + tr( "Website" ) + "</th></tr>";
QString website;
+ tr( "<p>For a list of individuals and institutions who have contributed "
"money to fund QGIS development and other project costs see "
"<a href=\"http://qgis.org/en/sponsorship/donors.html\">"
"http://qgis.org/en/sponsorship/donors.html</a></p>" );
/*QString website;
QTextStream donorsStream( &donorsFile );
// Always use UTF-8
donorsStream.setCodec( "UTF-8" );
Expand All @@ -208,7 +206,7 @@ void QgsAbout::init()
// close the row
donorsHTML += "</tr>";
}
donorsHTML += "</table>";
donorsHTML += "</table>";*/

QString myStyle = QgsApplication::reportStyleSheet();
txtDonors->clear();
Expand Down

0 comments on commit 64942af

Please sign in to comment.