Lost changes to some virtual function overrides.
parent
69383de1e7
commit
e24e6a3fed
|
|
@ -37,7 +37,9 @@ void LLViewerAssetStorage::storeAssetData(
|
|||
void* user_data,
|
||||
bool temp_file,
|
||||
bool is_priority,
|
||||
bool store_local)
|
||||
bool store_local,
|
||||
bool user_waiting,
|
||||
F64 timeout)
|
||||
{
|
||||
LLAssetID asset_id = tid.makeAssetID(gAgent.getSecureSessionID());
|
||||
llinfos << "LLViewerAssetStorage::storeAssetData (legacy) " << tid << ":" << LLAssetType::lookup(asset_type)
|
||||
|
|
@ -141,7 +143,9 @@ void LLViewerAssetStorage::storeAssetData(
|
|||
LLStoreAssetCallback callback,
|
||||
void* user_data,
|
||||
bool temp_file,
|
||||
bool is_priority)
|
||||
bool is_priority,
|
||||
bool user_waiting,
|
||||
F64 timeout)
|
||||
{
|
||||
if(!filename)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -32,7 +32,9 @@ public:
|
|||
void* user_data,
|
||||
bool temp_file = false,
|
||||
bool is_priority = false,
|
||||
bool store_local = false);
|
||||
bool store_local = false,
|
||||
bool user_waiting=FALSE,
|
||||
F64 timeout=LL_ASSET_STORAGE_TIMEOUT);
|
||||
|
||||
virtual void storeAssetData(
|
||||
const char* filename,
|
||||
|
|
@ -41,7 +43,9 @@ public:
|
|||
LLStoreAssetCallback callback,
|
||||
void* user_data,
|
||||
bool temp_file = false,
|
||||
bool is_priority = false);
|
||||
bool is_priority = false,
|
||||
bool user_waiting=FALSE,
|
||||
F64 timeout=LL_ASSET_STORAGE_TIMEOUT);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue