Skip to content
Snippets Groups Projects
Commit 116f1601 authored by James Cook's avatar James Cook
Browse files

merge

parents f4a7de3b 2f417469
No related branches found
No related tags found
No related merge requests found
...@@ -81,6 +81,11 @@ class LLNotificationHistoryChannel : public LLNotificationChannel ...@@ -81,6 +81,11 @@ class LLNotificationHistoryChannel : public LLNotificationChannel
void savePersistentNotifications() void savePersistentNotifications()
{ {
/* NOTE: As of 2009-11-09 the reload of notifications on startup does not
work, and has not worked for months. Skip saving notifications until the
read can be fixed, because this hits the disk once per notification and
causes log spam. James
llinfos << "Saving open notifications to " << mFileName << llendl; llinfos << "Saving open notifications to " << mFileName << llendl;
llofstream notify_file(mFileName.c_str()); llofstream notify_file(mFileName.c_str());
...@@ -107,6 +112,7 @@ class LLNotificationHistoryChannel : public LLNotificationChannel ...@@ -107,6 +112,7 @@ class LLNotificationHistoryChannel : public LLNotificationChannel
LLPointer<LLSDFormatter> formatter = new LLSDXMLFormatter(); LLPointer<LLSDFormatter> formatter = new LLSDXMLFormatter();
formatter->format(output, notify_file, LLSDFormatter::OPTIONS_PRETTY); formatter->format(output, notify_file, LLSDFormatter::OPTIONS_PRETTY);
*/
} }
void loadPersistentNotifications() void loadPersistentNotifications()
......
...@@ -291,7 +291,7 @@ void LLFloaterPostcard::uploadCallback(const LLUUID& asset_id, void *user_data, ...@@ -291,7 +291,7 @@ void LLFloaterPostcard::uploadCallback(const LLUUID& asset_id, void *user_data,
// static // static
void LLFloaterPostcard::updateUserInfo(const std::string& email) void LLFloaterPostcard::updateUserInfo(const std::string& email)
{ {
LLFloaterReg::const_instance_list_t& inst_list = LLFloaterReg::getFloaterList("impanel"); LLFloaterReg::const_instance_list_t& inst_list = LLFloaterReg::getFloaterList("postcard");
for (LLFloaterReg::const_instance_list_t::const_iterator iter = inst_list.begin(); for (LLFloaterReg::const_instance_list_t::const_iterator iter = inst_list.begin();
iter != inst_list.end(); ++iter) iter != inst_list.end(); ++iter)
{ {
......
...@@ -51,6 +51,7 @@ ...@@ -51,6 +51,7 @@
</text> </text>
<line_editor <line_editor
follows="left|bottom" follows="left|bottom"
font="SansSerif"
handle_edit_keys_directly="true" handle_edit_keys_directly="true"
height="20" height="20"
left_delta="0" left_delta="0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment