Browse Source

Code formatting

Remove extra private keyword
adaptive-webui-19844
Chocobo1 8 years ago committed by sledgehammer999
parent
commit
84bc011df5
No known key found for this signature in database
GPG Key ID: 6E4A2D025B7CC9A2
  1. 4
      src/base/http/server.h

4
src/base/http/server.h

@ -59,14 +59,14 @@ namespace Http
#endif #endif
private: private:
IRequestHandler *m_requestHandler;
#ifdef QBT_USES_QT5 #ifdef QBT_USES_QT5
void incomingConnection(qintptr socketDescriptor); void incomingConnection(qintptr socketDescriptor);
#else #else
void incomingConnection(int socketDescriptor); void incomingConnection(int socketDescriptor);
#endif #endif
private:
IRequestHandler *m_requestHandler;
#ifndef QT_NO_OPENSSL #ifndef QT_NO_OPENSSL
bool m_https; bool m_https;
QList<QSslCertificate> m_certificates; QList<QSslCertificate> m_certificates;

Loading…
Cancel
Save