diff options
Diffstat (limited to 'linden/indra/llui/lluistring.h')
-rw-r--r-- | linden/indra/llui/lluistring.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/llui/lluistring.h b/linden/indra/llui/lluistring.h index aedeca2..adc2e08 100644 --- a/linden/indra/llui/lluistring.h +++ b/linden/indra/llui/lluistring.h | |||
@@ -45,14 +45,14 @@ | |||
45 | // the correct result | 45 | // the correct result |
46 | 46 | ||
47 | // Example Usage: | 47 | // Example Usage: |
48 | // LLUIString mMessage("Welcome [USERNAME] to [SECONDLIFE]!"); | 48 | // LLUIString mMessage("Welcome [USERNAME] to [GRIDNAME]!"); |
49 | // mMessage.setArg("[USERNAME]", "Steve"); | 49 | // mMessage.setArg("[USERNAME]", "Steve"); |
50 | // mMessage.setArg("[SECONDLIFE]", "Second Life"); | 50 | // mMessage.setArg("[GRIDNAME]", "This Grid"); |
51 | // llinfos << mMessage.getString() << llendl; // outputs "Welcome Steve to Second Life" | 51 | // llinfos << mMessage.getString() << llendl; // outputs "Welcome Steve to This Grid" |
52 | // mMessage.setArg("[USERNAME]", "Joe"); | 52 | // mMessage.setArg("[USERNAME]", "Joe"); |
53 | // llinfos << mMessage.getString() << llendl; // outputs "Welcome Joe to Second Life" | 53 | // llinfos << mMessage.getString() << llendl; // outputs "Welcome Joe to This Grid" |
54 | // mMessage = "Recepcin a la [SECONDLIFE] [USERNAME]" | 54 | // mMessage = "Recepcin a la [GRIDNAME] [USERNAME]" |
55 | // mMessage.setArg("[SECONDLIFE]", "Segunda Vida"); | 55 | // mMessage.setArg("[GRIDNAME]", "Segunda Vida"); |
56 | // llinfos << mMessage.getString() << llendl; // outputs "Recepcin a la Segunda Vida Joe" | 56 | // llinfos << mMessage.getString() << llendl; // outputs "Recepcin a la Segunda Vida Joe" |
57 | 57 | ||
58 | // Implementation Notes: | 58 | // Implementation Notes: |