diff options
author | Jacek Antonelli | 2008-08-15 23:44:54 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:54 -0500 |
commit | b2afb8800bb033a04bb3ecdf0363068d56648ef1 (patch) | |
tree | 3568129b5bbddb47cd39d622b4137a8fbff4abaf /linden/indra/newview/llpanelgroupinvite.cpp | |
parent | Second Life viewer sources 1.14.0.1 (diff) | |
download | meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.zip meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.gz meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.bz2 meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.xz |
Second Life viewer sources 1.15.0.2
Diffstat (limited to 'linden/indra/newview/llpanelgroupinvite.cpp')
-rw-r--r-- | linden/indra/newview/llpanelgroupinvite.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/linden/indra/newview/llpanelgroupinvite.cpp b/linden/indra/newview/llpanelgroupinvite.cpp index bc0d8d1..7e5429f 100644 --- a/linden/indra/newview/llpanelgroupinvite.cpp +++ b/linden/indra/newview/llpanelgroupinvite.cpp | |||
@@ -3,6 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (c) 2006-2007, Linden Research, Inc. | 4 | * Copyright (c) 2006-2007, Linden Research, Inc. |
5 | * | 5 | * |
6 | * Second Life Viewer Source Code | ||
6 | * The source code in this file ("Source Code") is provided by Linden Lab | 7 | * The source code in this file ("Source Code") is provided by Linden Lab |
7 | * to you under the terms of the GNU General Public License, version 2.0 | 8 | * to you under the terms of the GNU General Public License, version 2.0 |
8 | * ("GPL"), unless you have obtained a separate licensing agreement | 9 | * ("GPL"), unless you have obtained a separate licensing agreement |
@@ -118,11 +119,11 @@ void LLPanelGroupInvite::impl::addUsers(const std::vector<std::string>& names, | |||
118 | } | 119 | } |
119 | 120 | ||
120 | //add the name to the names list | 121 | //add the name to the names list |
121 | const BOOL enabled = TRUE; | 122 | LLSD row; |
122 | LLScrollListItem* row = new LLScrollListItem( | 123 | row["id"] = id; |
123 | enabled, NULL, id); | 124 | row["columns"][0]["value"] = name; |
124 | row->addColumn(name.c_str(), LLFontGL::sSansSerif); | 125 | |
125 | mInvitees->addItem(row); | 126 | mInvitees->addElement(row); |
126 | } | 127 | } |
127 | } | 128 | } |
128 | 129 | ||