Skip to content

Commit 64942af

Browse files
author
brushtyler
committedNov 13, 2010
modified the donors page
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14626 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed
 

‎src/app/qgsabout.cpp

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -178,13 +178,11 @@ void QgsAbout::init()
178178
if ( donorsFile.open( QIODevice::ReadOnly ) )
179179
{
180180
QString donorsHTML = ""
181-
+ tr( "<p>The following individuals and institutions have contributed "
182-
"money to fund QGIS development and other project costs</p>" )
183-
+ "<hr>"
184-
"<table width='100%'>"
185-
"<tr><th>" + tr( "Name" ) + "</th>"
186-
"<th>" + tr( "Website" ) + "</th></tr>";
187-
QString website;
181+
+ tr( "<p>For a list of individuals and institutions who have contributed "
182+
"money to fund QGIS development and other project costs see "
183+
"<a href=\"http://qgis.org/en/sponsorship/donors.html\">"
184+
"http://qgis.org/en/sponsorship/donors.html</a></p>" );
185+
/*QString website;
188186
QTextStream donorsStream( &donorsFile );
189187
// Always use UTF-8
190188
donorsStream.setCodec( "UTF-8" );
@@ -208,7 +206,7 @@ void QgsAbout::init()
208206
// close the row
209207
donorsHTML += "</tr>";
210208
}
211-
donorsHTML += "</table>";
209+
donorsHTML += "</table>";*/
212210

213211
QString myStyle = QgsApplication::reportStyleSheet();
214212
txtDonors->clear();

0 commit comments

Comments
 (0)
Please sign in to comment.