Skip to content

Commit 95f0a37

Browse files
author
g_j_m
committed
Fix a compiler warning (use a tcp port number that fits within a 16bit
integer) git-svn-id: http://svn.osgeo.org/qgis/trunk@6539 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 2e87aed commit 95f0a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpviewer/qgshelpserver.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// See qt/tools/assistant/ main.cpp and lib/qassistantclient.cpp (Qt 3.3.4).
2323

2424
QgsHelpContextServer::QgsHelpContextServer(QObject *parent) :
25-
Q3ServerSocket(0x7f000001, 0, parent)
25+
Q3ServerSocket(0x7f01, 0, parent)
2626
{
2727
// Superclass listens for localhost connection
2828
}

0 commit comments

Comments
 (0)