Skip to content

Commit

Permalink
Added missing \param to ctor documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Jul 27, 2017
1 parent ce22316 commit c0c18cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions python/server/qgsbufferserverrequest.sip
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,19 @@ class QgsBufferServerRequest : QgsServerRequest
Constructor

\param url the url string
\param method the request method
\param method the request method, default to GET
\param headers optional dictionary of header name-values
\param data optional POST data
%End

QgsBufferServerRequest( const QUrl &url, QgsServerRequest::Method method = QgsServerRequest::GetMethod, const QgsServerRequest::Headers &headers = QgsServerRequest::Headers(), QByteArray *data = 0 );
%Docstring
Constructor

\param url QUrl
\param method the request method
\param method the request method, default to GET
\param headers optional dictionary of header name-values
\param data optional POST data
%End

~QgsBufferServerRequest();
Expand Down
8 changes: 6 additions & 2 deletions src/server/qgsbufferserverrequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,19 @@ class SERVER_EXPORT QgsBufferServerRequest : public QgsServerRequest
* Constructor
*
* \param url the url string
* \param method the request method
* \param method the request method, default to GET
* \param headers optional dictionary of header name-values
* \param data optional POST data
*/
QgsBufferServerRequest( const QString &url, QgsServerRequest::Method method = QgsServerRequest::GetMethod, const QgsServerRequest::Headers &headers = QgsServerRequest::Headers(), QByteArray *data = nullptr );

/**
* Constructor
*
* \param url QUrl
* \param method the request method
* \param method the request method, default to GET
* \param headers optional dictionary of header name-values
* \param data optional POST data
*/
QgsBufferServerRequest( const QUrl &url, QgsServerRequest::Method method = QgsServerRequest::GetMethod, const QgsServerRequest::Headers &headers = QgsServerRequest::Headers(), QByteArray *data = nullptr );

Expand Down

0 comments on commit c0c18cd

Please sign in to comment.