Skip to content
Snippets Groups Projects
Commit cad4ca01 authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-379

Checker: UNINIT_CTOR
Function: LLFloaterScriptQueue::LLFloaterScriptQueue(const LLSD &)
File: /indra/newview/llcompilequeue.cpp
parent 7bd7f0d0
Branches
Tags
No related merge requests found
...@@ -92,7 +92,8 @@ struct LLScriptQueueData ...@@ -92,7 +92,8 @@ struct LLScriptQueueData
// Default constructor // Default constructor
LLFloaterScriptQueue::LLFloaterScriptQueue(const LLSD& key) : LLFloaterScriptQueue::LLFloaterScriptQueue(const LLSD& key) :
LLFloater(key), LLFloater(key),
mDone(FALSE) mDone(false),
mMono(false)
{ {
//Called from floater reg: LLUICtrlFactory::getInstance()->buildFloater(this,"floater_script_queue.xml", FALSE); //Called from floater reg: LLUICtrlFactory::getInstance()->buildFloater(this,"floater_script_queue.xml", FALSE);
} }
...@@ -216,7 +217,7 @@ BOOL LLFloaterScriptQueue::nextObject() ...@@ -216,7 +217,7 @@ BOOL LLFloaterScriptQueue::nextObject()
} while((mObjectIDs.count() > 0) && !successful_start); } while((mObjectIDs.count() > 0) && !successful_start);
if(isDone() && !mDone) if(isDone() && !mDone)
{ {
mDone = TRUE; mDone = true;
getChild<LLScrollListCtrl>("queue output")->setCommentText(getString("Done")); getChild<LLScrollListCtrl>("queue output")->setCommentText(getString("Done"));
childSetEnabled("close",TRUE); childSetEnabled("close",TRUE);
} }
......
...@@ -104,10 +104,10 @@ class LLFloaterScriptQueue : public LLFloater, public LLVOInventoryListener ...@@ -104,10 +104,10 @@ class LLFloaterScriptQueue : public LLFloater, public LLVOInventoryListener
// Object Queue // Object Queue
LLDynamicArray<LLUUID> mObjectIDs; LLDynamicArray<LLUUID> mObjectIDs;
LLUUID mCurrentObjectID; LLUUID mCurrentObjectID;
BOOL mDone; bool mDone;
std::string mStartString; std::string mStartString;
BOOL mMono; bool mMono;
}; };
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment