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/llcommon/llsecondlifeurls.cpp | |
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/llcommon/llsecondlifeurls.cpp')
-rw-r--r-- | linden/indra/llcommon/llsecondlifeurls.cpp | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/linden/indra/llcommon/llsecondlifeurls.cpp b/linden/indra/llcommon/llsecondlifeurls.cpp index 46b8cde..ee478fe 100644 --- a/linden/indra/llcommon/llsecondlifeurls.cpp +++ b/linden/indra/llcommon/llsecondlifeurls.cpp | |||
@@ -32,56 +32,56 @@ | |||
32 | #include "linden_common.h" | 32 | #include "linden_common.h" |
33 | #include "llsecondlifeurls.h" | 33 | #include "llsecondlifeurls.h" |
34 | 34 | ||
35 | const char CREATE_ACCOUNT_URL[] = | 35 | const std::string CREATE_ACCOUNT_URL ( |
36 | "http://secondlife.com/registration/"; | 36 | "http://secondlife.com/registration/"); |
37 | 37 | ||
38 | const char MANAGE_ACCOUNT[] = | 38 | const std::string MANAGE_ACCOUNT ( |
39 | "http://secondlife.com/account/"; | 39 | "http://secondlife.com/account/"); |
40 | 40 | ||
41 | const char AUCTION_URL[] = | 41 | const std::string AUCTION_URL ( |
42 | "http://secondlife.com/auctions/auction-detail.php?id="; | 42 | "http://secondlife.com/auctions/auction-detail.php?id="); |
43 | 43 | ||
44 | const char EVENTS_URL[] = | 44 | const std::string EVENTS_URL ( |
45 | "http://secondlife.com/events/"; | 45 | "http://secondlife.com/events/"); |
46 | 46 | ||
47 | const char TIER_UP_URL[] = | 47 | const std::string TIER_UP_URL ( |
48 | "http://secondlife.com/app/landtier"; | 48 | "http://secondlife.com/app/landtier"); |
49 | 49 | ||
50 | const char LAND_URL[] = | 50 | const std::string LAND_URL ( |
51 | "http://secondlife.com/app/landtier"; | 51 | "http://secondlife.com/app/landtier"); |
52 | 52 | ||
53 | const char UPGRADE_TO_PREMIUM_URL[] = | 53 | const std::string UPGRADE_TO_PREMIUM_URL ( |
54 | "http://secondlife.com/app/upgrade/"; | 54 | "http://secondlife.com/app/upgrade/"); |
55 | 55 | ||
56 | const char DIRECTX_9_URL[] = | 56 | const std::string DIRECTX_9_URL ( |
57 | "http://secondlife.com/support/"; | 57 | "http://secondlife.com/support/"); |
58 | 58 | ||
59 | const char AMD_AGP_URL[] = | 59 | const std::string AMD_AGP_URL ( |
60 | "http://secondlife.com/support/"; | 60 | "http://secondlife.com/support/"); |
61 | 61 | ||
62 | const char VIA_URL[] = | 62 | const std::string VIA_URL ( |
63 | "http://secondlife.com/support/"; | 63 | "http://secondlife.com/support/"); |
64 | 64 | ||
65 | const char SUPPORT_URL[] = | 65 | const std::string SUPPORT_URL ( |
66 | "http://secondlife.com/support/"; | 66 | "http://secondlife.com/support/"); |
67 | 67 | ||
68 | const char INTEL_CHIPSET_URL[] = | 68 | const std::string INTEL_CHIPSET_URL ( |
69 | "http://secondlife.com/support/"; | 69 | "http://secondlife.com/support/"); |
70 | 70 | ||
71 | const char SIS_CHIPSET_URL[] = | 71 | const std::string SIS_CHIPSET_URL ( |
72 | "http://secondlife.com/support/"; | 72 | "http://secondlife.com/support/"); |
73 | 73 | ||
74 | const char BLOGS_URL[] = | 74 | const std::string BLOGS_URL ( |
75 | "http://blog.secondlife.com/"; | 75 | "http://blog.secondlife.com/"); |
76 | 76 | ||
77 | const char BUY_CURRENCY_URL[] = | 77 | const std::string BUY_CURRENCY_URL ( |
78 | "http://secondlife.com/app/currency/"; | 78 | "http://secondlife.com/app/currency/"); |
79 | 79 | ||
80 | const char LSL_DOC_URL[] = | 80 | const std::string LSL_DOC_URL ( |
81 | "http://secondlife.com/app/lsldoc/"; | 81 | "http://secondlife.com/app/lsldoc/"); |
82 | 82 | ||
83 | const char SL_KB_URL[] = | 83 | const std::string SL_KB_URL ( |
84 | "http://secondlife.com/knowledgebase/"; | 84 | "http://secondlife.com/knowledgebase/"); |
85 | |||
86 | const char RELEASE_NOTES[] = "releasenotes.txt"; | ||
87 | 85 | ||
86 | const std::string RELEASE_NOTES_BASE_URL ( | ||
87 | "http://secondlife.com/app/releasenotes/"); | ||