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 | 07b557cef909d74cd514b2d7e6b666edbfae3ef2 (patch) | |
tree | 3ac58b25c5d3d03983fc1e32fc5f4fe00fd3a9c9 /indra/newview/llmeshrepository.h | |
parent | edcdce226a7ff599e43c89fe7e4d37350650ae96 (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(); |