summaryrefslogtreecommitdiff
path: root/indra/newview/llmeshrepository.h
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2012-10-17 15:33:01 -0500
committerDave Parks <davep@lindenlab.com>2012-10-17 15:33:01 -0500
commit07b557cef909d74cd514b2d7e6b666edbfae3ef2 (patch)
tree3ac58b25c5d3d03983fc1e32fc5f4fe00fd3a9c9 /indra/newview/llmeshrepository.h
parentedcdce226a7ff599e43c89fe7e4d37350650ae96 (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.h3
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();