Skip to content

Commit

Permalink
Fix a compiler warning (use a tcp port number that fits within a 16bit
Browse files Browse the repository at this point in the history
integer)


git-svn-id: http://svn.osgeo.org/qgis/trunk@6539 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Feb 6, 2007
1 parent 2e87aed commit 95f0a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpviewer/qgshelpserver.cpp
Expand Up @@ -22,7 +22,7 @@
// See qt/tools/assistant/ main.cpp and lib/qassistantclient.cpp (Qt 3.3.4).

QgsHelpContextServer::QgsHelpContextServer(QObject *parent) :
Q3ServerSocket(0x7f000001, 0, parent)
Q3ServerSocket(0x7f01, 0, parent)
{
// Superclass listens for localhost connection
}
Expand Down

0 comments on commit 95f0a37

Please sign in to comment.