@@ -33,19 +33,19 @@ @interface OFHTTPRequest: OFObject { OFURL *URL; of_http_request_type_t requestType; OFDictionary *headers; - OFDataArray *postData; + OFDataArray *POSTData; OFString *MIMEType; } #ifdef OF_HAVE_PROPERTIES @property (copy) OFURL *URL; @property of_http_request_type_t requestType; @property (copy) OFDictionary *headers; -@property (retain) OFDataArray *postData; +@property (retain) OFDataArray *POSTData; @property (copy) OFString *MIMEType; #endif /*! * @brief Creates a new OFHTTPRequest. @@ -113,20 +113,20 @@ - (OFDictionary*)headers; /*! * @brief Sets the POST data of the HTTP request. * - * @param postData The POST data of the HTTP request + * @param POSTData The POST data of the HTTP request */ -- (void)setPostData: (OFDataArray*)postData; +- (void)setPOSTData: (OFDataArray*)postData; /*! * @brief Returns the POST data of the HTTP request. * * @return The POST data of the HTTP request */ -- (OFDataArray*)postData; +- (OFDataArray*)POSTData; /*! * @brief Sets the MIME type for the POST data. * * @param MIMEType The MIME type for the POST data