diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llprefsim.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llprefsim.cpp b/linden/indra/newview/llprefsim.cpp index e1e9740..0548287 100644 --- a/linden/indra/newview/llprefsim.cpp +++ b/linden/indra/newview/llprefsim.cpp | |||
@@ -97,7 +97,7 @@ BOOL LLPrefsIMImpl::postBuild() | |||
97 | childSetLabelArg("send_im_to_email", "[EMAIL]", getString("log_in_to_change")); | 97 | childSetLabelArg("send_im_to_email", "[EMAIL]", getString("log_in_to_change")); |
98 | 98 | ||
99 | // Don't enable this until we get personal data | 99 | // Don't enable this until we get personal data |
100 | childDisable("include_im_in_chat_history"); | 100 | childDisable("include_im_in_chat_console"); |
101 | childDisable("show_timestamps_check"); | 101 | childDisable("show_timestamps_check"); |
102 | childDisable("friends_online_notify_checkbox"); | 102 | childDisable("friends_online_notify_checkbox"); |
103 | 103 | ||
@@ -115,7 +115,7 @@ BOOL LLPrefsIMImpl::postBuild() | |||
115 | 115 | ||
116 | childSetText("busy_response", getString("log_in_to_change")); | 116 | childSetText("busy_response", getString("log_in_to_change")); |
117 | 117 | ||
118 | childSetValue("include_im_in_chat_history", gSavedSettings.getBOOL("IMInChatHistory")); | 118 | childSetValue("include_im_in_chat_console", gSavedSettings.getBOOL("IMInChatConsole")); |
119 | childSetValue("show_timestamps_check", gSavedSettings.getBOOL("IMShowTimestamps")); | 119 | childSetValue("show_timestamps_check", gSavedSettings.getBOOL("IMShowTimestamps")); |
120 | childSetValue("friends_online_notify_checkbox", gSavedSettings.getBOOL("ChatOnlineNotification")); | 120 | childSetValue("friends_online_notify_checkbox", gSavedSettings.getBOOL("ChatOnlineNotification")); |
121 | 121 | ||
@@ -164,7 +164,7 @@ void LLPrefsIMImpl::apply() | |||
164 | 164 | ||
165 | gSavedPerAccountSettings.setString("BusyModeResponse", std::string(wstring_to_utf8str(busy_response))); | 165 | gSavedPerAccountSettings.setString("BusyModeResponse", std::string(wstring_to_utf8str(busy_response))); |
166 | 166 | ||
167 | gSavedSettings.setBOOL("IMInChatHistory", childGetValue("include_im_in_chat_history").asBoolean()); | 167 | gSavedSettings.setBOOL("IMInChatConsole", childGetValue("include_im_in_chat_console").asBoolean()); |
168 | gSavedSettings.setBOOL("IMShowTimestamps", childGetValue("show_timestamps_check").asBoolean()); | 168 | gSavedSettings.setBOOL("IMShowTimestamps", childGetValue("show_timestamps_check").asBoolean()); |
169 | gSavedSettings.setBOOL("ChatOnlineNotification", childGetValue("friends_online_notify_checkbox").asBoolean()); | 169 | gSavedSettings.setBOOL("ChatOnlineNotification", childGetValue("friends_online_notify_checkbox").asBoolean()); |
170 | 170 | ||
@@ -235,7 +235,7 @@ void LLPrefsIMImpl::setPersonalInfo(const std::string& visibility, bool im_via_e | |||
235 | mOriginalHideOnlineStatus = true; | 235 | mOriginalHideOnlineStatus = true; |
236 | } | 236 | } |
237 | 237 | ||
238 | childEnable("include_im_in_chat_history"); | 238 | childEnable("include_im_in_chat_console"); |
239 | childEnable("show_timestamps_check"); | 239 | childEnable("show_timestamps_check"); |
240 | childEnable("friends_online_notify_checkbox"); | 240 | childEnable("friends_online_notify_checkbox"); |
241 | 241 | ||