diff options
author | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2009-11-09 14:44:56 +0200 |
---|---|---|
committer | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2009-11-09 14:44:56 +0200 |
commit | cd328841106734938dd747e9a7fd2575cd6c1b85 (patch) | |
tree | f386a1511678e875f1b2cb6e95bf5bbabebbb36a /indra/newview/llpanelpicks.h | |
parent | f2f57797482bb22c6aa857f7af6f65510573ffff (diff) |
Update for major task EXT-2250 Classifieds list in Picks panel.
Fixed viewing classifieds of other avatars.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llpanelpicks.h')
-rw-r--r-- | indra/newview/llpanelpicks.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llpanelpicks.h b/indra/newview/llpanelpicks.h index ef7ba9e700..daf8059fee 100644 --- a/indra/newview/llpanelpicks.h +++ b/indra/newview/llpanelpicks.h @@ -237,12 +237,18 @@ public: const LLVector3d& getPosGlobal() { return mPosGlobal; } - void setName (const std::string& name); + void setClassifiedName (const std::string& name); + + std::string getClassifiedName() { return childGetValue("name").asString(); } void setDescription(const std::string& desc); + std::string getDescription() { return childGetValue("description").asString(); } + void setSnapshotId(const LLUUID& snapshot_id); + LLUUID getSnapshotId(); + private: LLUUID mAvatarId; LLUUID mClassifiedId; |