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/llagentlanguage.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 '')
-rw-r--r-- | linden/indra/newview/llagentlanguage.h (renamed from linden/indra/newview/llhippo.h) | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/linden/indra/newview/llhippo.h b/linden/indra/newview/llagentlanguage.h index ba39595..d86a8f1 100644 --- a/linden/indra/newview/llhippo.h +++ b/linden/indra/newview/llagentlanguage.h | |||
@@ -1,10 +1,10 @@ | |||
1 | /** | 1 | /** |
2 | * @file llhippo.h | 2 | * @file llagentlanguage.h |
3 | * @brief Implement a "bug" for our users to find. | 3 | * @brief Transmit language information to server |
4 | * | 4 | * |
5 | * $LicenseInfo:firstyear=2003&license=viewergpl$ | 5 | * $LicenseInfo:firstyear=2006&license=viewergpl$ |
6 | * | 6 | * |
7 | * Copyright (c) 2003-2008, Linden Research, Inc. | 7 | * Copyright (c) 2006-2008, Linden Research, Inc. |
8 | * | 8 | * |
9 | * Second Life Viewer Source Code | 9 | * Second Life Viewer Source Code |
10 | * The source code in this file ("Source Code") is provided by Linden Lab | 10 | * The source code in this file ("Source Code") is provided by Linden Lab |
@@ -29,9 +29,17 @@ | |||
29 | * $/LicenseInfo$ | 29 | * $/LicenseInfo$ |
30 | */ | 30 | */ |
31 | 31 | ||
32 | #ifndef LL_LLHIPPO_H | 32 | #ifndef LL_LLAGENTLANGUAGE_H |
33 | #define LL_LLHIPPO_H | 33 | #define LL_LLAGENTLANGUAGE_H |
34 | 34 | ||
35 | void trigger_hippo_bug(void*); | 35 | #include "llmemory.h" |
36 | #include "llevent.h" | ||
36 | 37 | ||
37 | #endif | 38 | class LLAgentLanguage: public LLSingleton<LLAgentLanguage>, public LLSimpleListener |
39 | { | ||
40 | public: | ||
41 | LLAgentLanguage(); | ||
42 | static bool update(); | ||
43 | }; | ||
44 | |||
45 | #endif // LL_LLAGENTLANGUAGE_H | ||