Skip to content

Commit

Permalink
Mergeable on master
Browse files Browse the repository at this point in the history
Funded by ItOpen - http://www.itopen.it
  • Loading branch information
elpaso committed Nov 26, 2014
1 parent 5d44315 commit 35dd4e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/mapserver/qgshttprequesthandler.cpp
Expand Up @@ -32,8 +32,8 @@
#include <QUrl>
#include <fcgi_stdio.h>

QgsHttpRequestHandler::QgsHttpRequestHandler():
QgsRequestHandler()
QgsHttpRequestHandler::QgsHttpRequestHandler()
: QgsRequestHandler()
{
mException = NULL;
mHeadersSent = FALSE;
Expand Down
2 changes: 1 addition & 1 deletion src/mapserver/qgsrequesthandler.h
Expand Up @@ -69,6 +69,7 @@ class QgsRequestHandler
virtual void appendBody( const QByteArray &body ) = 0;
/**Clears the response body*/
virtual void clearBody( ) = 0;
/**Return the response body*/
virtual QByteArray* body( ) { return &mBody; }
virtual void setInfoFormat( const QString &format ) = 0;
/**Check if the response headers or the response body are not empty*/
Expand All @@ -84,7 +85,6 @@ class QgsRequestHandler
virtual int removeParameter( const QString &key ) = 0;
/**Return a request parameter*/
virtual QString parameter( const QString &key ) const = 0;
/**Return the response body*/
/**Return the requested format string*/
QString format() const { return mFormat; }
/**Return the mime type for the response*/
Expand Down

0 comments on commit 35dd4e6

Please sign in to comment.