diff options
author | Dave Parks <davep@lindenlab.com> | 2012-10-17 15:33:01 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-10-17 15:33:01 -0500 |
commit | 2fd843c11884ea7543544d5f33bc7030655b7382 (patch) | |
tree | b37865a3bc4e107844c876a7138dae4dce82febe /indra/newview/llmeshrepository.h | |
parent | 9db74ae962ad0c8864f8b236bed0bb503b0e96e1 (diff) |
MAINT-873 Fix for inability to upload meshes on some systems.
Diffstat (limited to 'indra/newview/llmeshrepository.h')
-rw-r--r-- | indra/newview/llmeshrepository.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llmeshrepository.h b/indra/newview/llmeshrepository.h index da81bb057b..6e301c26a2 100644 --- a/indra/newview/llmeshrepository.h +++ b/indra/newview/llmeshrepository.h @@ -405,6 +405,9 @@ public: LLHandle<LLWholeModelFeeObserver> fee_observer= (LLHandle<LLWholeModelFeeObserver>()), LLHandle<LLWholeModelUploadObserver> upload_observer = (LLHandle<LLWholeModelUploadObserver>())); ~LLMeshUploadThread(); + void startRequest() { ++mPendingUploads; } + void stopRequest() { --mPendingUploads; } + bool finished() { return mFinished; } virtual void run(); void preStart(); |