1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-22 16:08:39 -05:00

Web API: changed default port to 8091

This commit is contained in:
f4exb 2017-11-19 23:58:49 +01:00
parent 9b65511931
commit 0b5ab32a90
3 changed files with 4 additions and 4 deletions

View File

@ -433,7 +433,7 @@
<widget class="QLabel" name="scaleCenter"> <widget class="QLabel" name="scaleCenter">
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>16777215</width> <width>12</width>
<height>10</height> <height>10</height>
</size> </size>
</property> </property>

View File

@ -400,7 +400,7 @@
<widget class="QLabel" name="scaleCenter"> <widget class="QLabel" name="scaleCenter">
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>16777215</width> <width>12</width>
<height>10</height> <height>10</height>
</size> </size>
</property> </property>

View File

@ -29,10 +29,10 @@ MainParser::MainParser() :
m_serverPortOption(QStringList() << "p" << "api-port", m_serverPortOption(QStringList() << "p" << "api-port",
"Web API server port.", "Web API server port.",
"port", "port",
"8001") "8091")
{ {
m_serverAddress = "127.0.0.1"; m_serverAddress = "127.0.0.1";
m_serverPort = 8001; m_serverPort = 8091;
m_parser.setApplicationDescription("Software Defined Radio application"); m_parser.setApplicationDescription("Software Defined Radio application");
m_parser.addHelpOption(); m_parser.addHelpOption();