aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llcommandlineparser.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llcommandlineparser.h
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-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/llcommandlineparser.h')
-rw-r--r--linden/indra/newview/llcommandlineparser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llcommandlineparser.h b/linden/indra/newview/llcommandlineparser.h
index e281871..601a255 100644
--- a/linden/indra/newview/llcommandlineparser.h
+++ b/linden/indra/newview/llcommandlineparser.h
@@ -62,11 +62,11 @@ public:
62 * @param description The text description of the option usage. 62 * @param description The text description of the option usage.
63 */ 63 */
64 void addOptionDesc( 64 void addOptionDesc(
65 const LLString& option_name, 65 const std::string& option_name,
66 boost::function1<void, const token_vector_t&> notify_callback = 0, 66 boost::function1<void, const token_vector_t&> notify_callback = 0,
67 unsigned int num_tokens = 0, 67 unsigned int num_tokens = 0,
68 const LLString& description = LLString::null, 68 const std::string& description = LLStringUtil::null,
69 const LLString& short_name = LLString::null, 69 const std::string& short_name = LLStringUtil::null,
70 bool composing = false, 70 bool composing = false,
71 bool positional = false, 71 bool positional = false,
72 bool last_option = false); 72 bool last_option = false);
@@ -159,7 +159,7 @@ public:
159 * 159 *
160 * *FIX:Mani Specify config file format. 160 * *FIX:Mani Specify config file format.
161 */ 161 */
162 void configure(const LLString& config_filename, 162 void configure(const std::string& config_filename,
163 LLControlGroup* controlGroup); 163 LLControlGroup* controlGroup);
164}; 164};
165 165