diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llgroupnotify.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/newview/llgroupnotify.h')
-rw-r--r-- | linden/indra/newview/llgroupnotify.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/linden/indra/newview/llgroupnotify.h b/linden/indra/newview/llgroupnotify.h index 9bc58f9..7befdf4 100644 --- a/linden/indra/newview/llgroupnotify.h +++ b/linden/indra/newview/llgroupnotify.h | |||
@@ -46,30 +46,30 @@ class LLGroupNotifyBox | |||
46 | : public LLPanel | 46 | : public LLPanel |
47 | { | 47 | { |
48 | public: | 48 | public: |
49 | static LLGroupNotifyBox* show(const char* subject, | 49 | static LLGroupNotifyBox* show(const std::string& subject, |
50 | const char* message, | 50 | const std::string& message, |
51 | const char* from_name, | 51 | const std::string& from_name, |
52 | const LLUUID& group_id, | 52 | const LLUUID& group_id, |
53 | const U32& time_stamp, | 53 | const U32& time_stamp, |
54 | const bool& has_inventory = FALSE, | 54 | const bool& has_inventory = FALSE, |
55 | const char* inventory_name = NULL, | 55 | const std::string& inventory_name = std::string(), |
56 | LLOfferInfo* inventory_offer = NULL); | 56 | LLOfferInfo* inventory_offer = NULL); |
57 | void close(); | 57 | void close(); |
58 | 58 | ||
59 | protected: | 59 | protected: |
60 | // Non-transient messages. You can specify non-default button | 60 | // Non-transient messages. You can specify non-default button |
61 | // layouts (like one for script dialogs) by passing various | 61 | // layouts (like one for script dialogs) by passing various |
62 | // numbers in for "layout". | 62 | // numbers in for "layout". |
63 | LLGroupNotifyBox(const char* subject, | 63 | LLGroupNotifyBox(const std::string& subject, |
64 | const char* message, | 64 | const std::string& message, |
65 | const char* from_name, | 65 | const std::string& from_name, |
66 | const LLUUID& group_id, | 66 | const LLUUID& group_id, |
67 | const LLUUID& group_insignia, | 67 | const LLUUID& group_insignia, |
68 | const char* group_name, | 68 | const std::string& group_name, |
69 | const U32& t, | 69 | const U32& t, |
70 | const bool& has_inventory = FALSE, | 70 | const bool& has_inventory = FALSE, |
71 | const char* inventory_name = NULL, | 71 | const std::string& inventory_name = std::string(), |
72 | LLOfferInfo* inventory_offer = NULL); | 72 | LLOfferInfo* inventory_offer = NULL); |
73 | 73 | ||
74 | /*virtual*/ ~LLGroupNotifyBox(); | 74 | /*virtual*/ ~LLGroupNotifyBox(); |
75 | 75 | ||