Skip to content

Commit

Permalink
Minor cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Mar 5, 2021
1 parent 1a311da commit 7a8766d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/server/qgis_mapserver.cpp
Expand Up @@ -11,7 +11,7 @@ while QGIS server internal logging is printed to stderr.
-------------------
begin : Jan 17 2020
copyright : (C) 2020by Alessandro Pasotti
copyright : (C) 2020 by Alessandro Pasotti
email : elpaso at itopen dot it
***************************************************************************/

Expand Down Expand Up @@ -340,7 +340,10 @@ class TcpServerWorker: public QObject
mTcpServer.close();
}

bool isListening() const;
bool isListening() const
{
return mIsListening;
}

public slots:

Expand Down Expand Up @@ -651,7 +654,4 @@ int main( int argc, char *argv[] )

/// @endcond

bool TcpServerWorker::isListening() const
{
return mIsListening;
}

0 comments on commit 7a8766d

Please sign in to comment.