aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-10-18 17:58:27 -0700
committerMcCabe Maxsted2009-10-18 17:58:27 -0700
commite4b0e7c82d670081c071d8a3da31b5ec407b8e07 (patch)
tree9410962bbb582eedbec448139e217f2714050777 /linden/indra/llcommon
parentStarted 1.3.0 branch (diff)
parentUpdated and added some Linux libs. (diff)
downloadmeta-impy-e4b0e7c82d670081c071d8a3da31b5ec407b8e07.zip
meta-impy-e4b0e7c82d670081c071d8a3da31b5ec407b8e07.tar.gz
meta-impy-e4b0e7c82d670081c071d8a3da31b5ec407b8e07.tar.bz2
meta-impy-e4b0e7c82d670081c071d8a3da31b5ec407b8e07.tar.xz
Merged working branch of 1.2 into LL 1.23 merge
Diffstat (limited to 'linden/indra/llcommon')
-rw-r--r--linden/indra/llcommon/llchat.h13
-rw-r--r--linden/indra/llcommon/llstring.h1
-rw-r--r--linden/indra/llcommon/llversionviewer.h4
3 files changed, 14 insertions, 4 deletions
diff --git a/linden/indra/llcommon/llchat.h b/linden/indra/llcommon/llchat.h
index 7b010d6..6f9b8c4 100644
--- a/linden/indra/llcommon/llchat.h
+++ b/linden/indra/llcommon/llchat.h
@@ -43,7 +43,8 @@ typedef enum e_chat_source_type
43{ 43{
44 CHAT_SOURCE_SYSTEM = 0, 44 CHAT_SOURCE_SYSTEM = 0,
45 CHAT_SOURCE_AGENT = 1, 45 CHAT_SOURCE_AGENT = 1,
46 CHAT_SOURCE_OBJECT = 2 46 CHAT_SOURCE_OBJECT = 2,
47 CHAT_SOURCE_OBJECT_IM = 3
47} EChatSourceType; 48} EChatSourceType;
48 49
49typedef enum e_chat_type 50typedef enum e_chat_type
@@ -73,6 +74,10 @@ public:
73 : mText(text), 74 : mText(text),
74 mFromName(), 75 mFromName(),
75 mFromID(), 76 mFromID(),
77// [RLVa:KB] - Checked: 2009-07-04 (RLVa-1.0.0a)
78 mRlvLocFiltered(FALSE),
79 mRlvNamesFiltered(FALSE),
80// [/RLVa:KB]
76 mSourceType(CHAT_SOURCE_AGENT), 81 mSourceType(CHAT_SOURCE_AGENT),
77 mChatType(CHAT_TYPE_NORMAL), 82 mChatType(CHAT_TYPE_NORMAL),
78 mAudible(CHAT_AUDIBLE_FULLY), 83 mAudible(CHAT_AUDIBLE_FULLY),
@@ -81,10 +86,14 @@ public:
81 mPosAgent(), 86 mPosAgent(),
82 mURL() 87 mURL()
83 { } 88 { }
84 89
85 std::string mText; // UTF-8 line of text 90 std::string mText; // UTF-8 line of text
86 std::string mFromName; // agent or object name 91 std::string mFromName; // agent or object name
87 LLUUID mFromID; // agent id or object id 92 LLUUID mFromID; // agent id or object id
93// [RLVa:KB] - Checked: 2009-07-04 (RLVa-1.0.0a)
94 BOOL mRlvLocFiltered;
95 BOOL mRlvNamesFiltered;
96// [/RLVa:KB]
88 EChatSourceType mSourceType; 97 EChatSourceType mSourceType;
89 EChatType mChatType; 98 EChatType mChatType;
90 EChatAudible mAudible; 99 EChatAudible mAudible;
diff --git a/linden/indra/llcommon/llstring.h b/linden/indra/llcommon/llstring.h
index 99a9b9e..7db62bc 100644
--- a/linden/indra/llcommon/llstring.h
+++ b/linden/indra/llcommon/llstring.h
@@ -39,6 +39,7 @@
39#include <wctype.h> 39#include <wctype.h>
40#include <wchar.h> 40#include <wchar.h>
41#endif 41#endif
42#include "linden_common.h"
42 43
43#include <string.h> 44#include <string.h>
44 45
diff --git a/linden/indra/llcommon/llversionviewer.h b/linden/indra/llcommon/llversionviewer.h
index 826111f..bf08879 100644
--- a/linden/indra/llcommon/llversionviewer.h
+++ b/linden/indra/llcommon/llversionviewer.h
@@ -44,8 +44,8 @@ const char * const LL_VIEWER_NAME = "Second Life";
44const char * const IMP_VIEWER_NAME = "Imprudence"; 44const char * const IMP_VIEWER_NAME = "Imprudence";
45 45
46const S32 IMP_VERSION_MAJOR = 1; 46const S32 IMP_VERSION_MAJOR = 1;
47const S32 IMP_VERSION_MINOR = 1; 47const S32 IMP_VERSION_MINOR = 2;
48const S32 IMP_VERSION_PATCH = 0; 48const S32 IMP_VERSION_PATCH = 0;
49const char * const IMP_VERSION_TEST = ""; 49const char * const IMP_VERSION_TEST = "beta 2";
50 50
51#endif 51#endif