diff options
| author | callum <none@none> | 2011-10-05 12:52:40 -0700 | 
|---|---|---|
| committer | callum <none@none> | 2011-10-05 12:52:40 -0700 | 
| commit | ba60e0906549840b8632d72f17b3f9bcda65e882 (patch) | |
| tree | f0deb0843bef38b6bee707cdb5fa78de96e74ef1 /indra | |
| parent | fb7af4d0010f9d14cb5464bed83d9e022dbe0d1a (diff) | |
Fix for typo that broke build.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llui/llcommandmanager.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llui/llcommandmanager.h b/indra/llui/llcommandmanager.h index b11f905574..8e5abd6461 100644 --- a/indra/llui/llcommandmanager.h +++ b/indra/llui/llcommandmanager.h @@ -53,13 +53,13 @@ public:  	LLCommandId(const std::string& name)  		: mName(name)  	{ -		mUUID = LLUUID::LLUUID::generateNewID(name); +		mUUID = LLUUID::generateNewID(name);  	}  	LLCommandId(const Params& p)  	:	mName(p.name)  	{ -		mUUID = LLUUID::LLUUID::generateNewID(p.name); +		mUUID = LLUUID::generateNewID(p.name);  	}  	const std::string& name() const { return mName; } | 
