Skip to content

Commit

Permalink
[about] uses variable for the domain name
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Aug 31, 2015
1 parent f3ebe14 commit eee7191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsabout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void QgsAbout::init()
// check internet connection in order to hide/show the developers map widget
int DEVELOPERS_MAP_INDEX = 5;
QTcpSocket socket;
socket.connectToHost( "qgis.org", 80 );
socket.connectToHost( QgsApplication::QGIS_ORGANIZATION_DOMAIN, 80 );
if ( socket.waitForConnected( 1000 ) )
{
setDevelopersMap();
Expand Down

0 comments on commit eee7191

Please sign in to comment.