Skip to content

Commit

Permalink
body() now return QByteArray
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 7d42846 commit 9922121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapserver/qgsrequesthandler.h
Expand Up @@ -70,7 +70,7 @@ class QgsRequestHandler
/**Clears the response body*/
virtual void clearBody( ) = 0;
/**Return the response body*/
virtual QByteArray* body( ) { return &mBody; }
virtual QByteArray body( ) { return mBody; }
virtual void setInfoFormat( const QString &format ) = 0;
/**Check if the response headers or the response body are not empty*/
virtual bool responseReady() const = 0;
Expand Down

0 comments on commit 9922121

Please sign in to comment.