diff options
author | Leslie Linden <leslie@lindenlab.com> | 2011-07-20 11:35:38 -0700 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2011-07-20 11:35:38 -0700 |
commit | 5b89ba6942ebaa593914d9dc34794239aec8542f (patch) | |
tree | 03e70a11df26a6d829e13e60a18a72f9489fb8f0 /indra | |
parent | 956021b8662409cb0bdebe6f85bedaf1e2c33b87 (diff) |
Removed unused variable for build fix.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llsidepanelinventory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llsidepanelinventory.cpp b/indra/newview/llsidepanelinventory.cpp index a0d1247b34..6f809ba3ca 100644 --- a/indra/newview/llsidepanelinventory.cpp +++ b/indra/newview/llsidepanelinventory.cpp @@ -456,8 +456,8 @@ void LLSidepanelInventory::onToggleInboxBtn() LLButton* otherButton = getChild<LLButton>(OUTBOX_BUTTON_NAME); LLLayoutPanel* otherPanel = getChild<LLLayoutPanel>(OUTBOX_LAYOUT_PANEL_NAME); - bool inboxExpanded = manageInboxOutboxPanels(stack, pressedButton, pressedPanel, otherButton, otherPanel); -
+ manageInboxOutboxPanels(stack, pressedButton, pressedPanel, otherButton, otherPanel); + gSavedPerAccountSettings.setString("LastInventoryInboxExpand", LLDate::now().asString()); } |