Compile foxies
This commit is contained in:
@@ -67,7 +67,7 @@ BOOL LLImagePNG::updateData()
|
|||||||
}
|
}
|
||||||
|
|
||||||
LLPngWrapper::ImageInfo infop;
|
LLPngWrapper::ImageInfo infop;
|
||||||
if (! pngWrapper.readPng(getData(), getDataSize(), &infop))
|
if (! pngWrapper.readPng(getData(), getDataSize(), NULL, &infop))
|
||||||
{
|
{
|
||||||
setLastError(pngWrapper.getErrorMessage());
|
setLastError(pngWrapper.getErrorMessage());
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|||||||
@@ -722,7 +722,7 @@ void LLHTTPClient::put(std::string const& url, LLSD const& body, ResponderPtr re
|
|||||||
request(url, HTTP_PUT, new LLSDInjector(body), responder, headers, NULL/*,*/ DEBUG_CURLIO_PARAM(debug), no_keep_alive, no_does_authentication, no_allow_compressed_reply);
|
request(url, HTTP_PUT, new LLSDInjector(body), responder, headers, NULL/*,*/ DEBUG_CURLIO_PARAM(debug), no_keep_alive, no_does_authentication, no_allow_compressed_reply);
|
||||||
}
|
}
|
||||||
|
|
||||||
void LLHTTPClient::putRaw(const std::string& url, const U8* data, S32 size, ResponderPtr responder, AIHTTPHeaders& headers/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug))
|
void LLHTTPClient::putRaw(const std::string& url, const char* data, S32 size, ResponderPtr responder, AIHTTPHeaders& headers/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug))
|
||||||
{
|
{
|
||||||
request(url, HTTP_PUT, new RawInjector(data, size), responder, headers, NULL/*,*/ DEBUG_CURLIO_PARAM(debug), no_keep_alive, no_does_authentication, no_allow_compressed_reply);
|
request(url, HTTP_PUT, new RawInjector(data, size), responder, headers, NULL/*,*/ DEBUG_CURLIO_PARAM(debug), no_keep_alive, no_does_authentication, no_allow_compressed_reply);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -491,8 +491,8 @@ public:
|
|||||||
static void put(std::string const& url, LLSD const& body, ResponderPtr responder/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug = debug_off))
|
static void put(std::string const& url, LLSD const& body, ResponderPtr responder/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug = debug_off))
|
||||||
{ AIHTTPHeaders headers; put(url, body, responder, headers/*,*/ DEBUG_CURLIO_PARAM(debug)); }
|
{ AIHTTPHeaders headers; put(url, body, responder, headers/*,*/ DEBUG_CURLIO_PARAM(debug)); }
|
||||||
|
|
||||||
static void putRaw(const std::string& url, const U8* data, S32 size, ResponderPtr responder, AIHTTPHeaders& headers/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug = debug_off));
|
static void putRaw(const std::string& url, const char* data, S32 size, ResponderPtr responder, AIHTTPHeaders& headers/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug = debug_off));
|
||||||
static void putRaw(const std::string& url, const U8* data, S32 size, ResponderPtr responder/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug = debug_off))
|
static void putRaw(const std::string& url, const char* data, S32 size, ResponderPtr responder/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug = debug_off))
|
||||||
{ AIHTTPHeaders headers; putRaw(url, data, size, responder, headers/*,*/ DEBUG_CURLIO_PARAM(debug)); }
|
{ AIHTTPHeaders headers; putRaw(url, data, size, responder, headers/*,*/ DEBUG_CURLIO_PARAM(debug)); }
|
||||||
|
|
||||||
static void getHeaderOnly(std::string const& url, ResponderHeadersOnly* responder, AIHTTPHeaders& headers/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug = debug_off));
|
static void getHeaderOnly(std::string const& url, ResponderHeadersOnly* responder, AIHTTPHeaders& headers/*,*/ DEBUG_CURLIO_PARAM(EDebugCurl debug = debug_off));
|
||||||
|
|||||||
@@ -69,8 +69,8 @@ typedef LLMemberListener<LLPanelObjectInventory> object_inventory_listener_t;
|
|||||||
typedef LLMemberListener<LLInventoryView> inventory_listener_t;
|
typedef LLMemberListener<LLInventoryView> inventory_listener_t;
|
||||||
typedef LLMemberListener<LLInventoryPanel> inventory_panel_listener_t;
|
typedef LLMemberListener<LLInventoryPanel> inventory_panel_listener_t;
|
||||||
|
|
||||||
{
|
|
||||||
bool LLInventoryAction::doToSelected(LLFolderView* folder, std::string action)
|
bool LLInventoryAction::doToSelected(LLFolderView* folder, std::string action)
|
||||||
|
{
|
||||||
LLInventoryModel* model = &gInventory;
|
LLInventoryModel* model = &gInventory;
|
||||||
if ("rename" == action)
|
if ("rename" == action)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user