diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2024-08-13 15:32:47 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2024-08-13 15:32:47 -0400 | 
| commit | 23f2631d598b6e07450a96ed1ec00670c8867cdd (patch) | |
| tree | 20195c1688ad8cb7e8631c97fa5920624f10972c /indra/newview/llcompilequeue.h | |
| parent | 54334ff6e377e35c97df3a0fe2a859795ec07b21 (diff) | |
| parent | 8ce3323269d95f54e2b768c4c5aa154d4afbbb6b (diff) | |
Merge branch 'develop' into nat/edu-channel
Diffstat (limited to 'indra/newview/llcompilequeue.h')
| -rw-r--r-- | indra/newview/llcompilequeue.h | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llcompilequeue.h b/indra/newview/llcompilequeue.h index ba5e27d75a..951d4800e8 100644 --- a/indra/newview/llcompilequeue.h +++ b/indra/newview/llcompilequeue.h @@ -53,15 +53,15 @@ public:      LLFloaterScriptQueue(const LLSD& key);      virtual ~LLFloaterScriptQueue(); -    /*virtual*/ BOOL postBuild(); +    /*virtual*/ bool postBuild();      void setMono(bool mono) { mMono = mono; }      // addObject() accepts an object id.      void addObject(const LLUUID& id, std::string name); -    // start() returns TRUE if the queue has started, otherwise FALSE. -    BOOL start(); +    // start() returns true if the queue has started, otherwise false. +    bool start();      void addProcessingMessage(const std::string &message, const LLSD &args);      void addStringMessage(const std::string &message); @@ -72,7 +72,7 @@ protected:      static void onCloseBtn(void* user_data);      // returns true if this is done -    BOOL isDone() const; +    bool isDone() const;      virtual bool startQueue() = 0; @@ -123,7 +123,7 @@ class LLFloaterCompileQueue : public LLFloaterScriptQueue  public:      void experienceIdsReceived( const LLSD& content ); -    BOOL hasExperience(const LLUUID& id)const; +    bool hasExperience(const LLUUID& id)const;  protected:      LLFloaterCompileQueue(const LLSD& key);  | 
