diff options
| author | Richard Linden <none@none> | 2012-08-01 01:14:27 -0700 |
|---|---|---|
| committer | Richard Linden <none@none> | 2012-08-01 01:14:27 -0700 |
| commit | a204059d2e69fb33cb1a3c8d2fbed35d3967297c (patch) | |
| tree | 94d73465750ae665f5915588705430172a9ef7da /indra/newview/llinventorybridge.cpp | |
| parent | 8f7871911deba87e5ceed8f6f36c1cb2b429efe8 (diff) | |
CHUI-267 FIX Full inventory listing not always shown for test account
changed LLFolderViewModelInterface::getFilter() to return a reference, since it is never NULL
removed sort order from filter, which was causing unneeded filtering
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
| -rw-r--r-- | indra/newview/llinventorybridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 14616ca7ab..43c4ce1278 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -900,7 +900,7 @@ LLInventoryModel* LLInvFVBridge::getInventoryModel() const LLInventoryFilter* LLInvFVBridge::getInventoryFilter() const { LLInventoryPanel* panel = mInventoryPanel.get(); - return panel ? panel->getFilter() : NULL; + return panel ? &(panel->getFilter()) : NULL; } BOOL LLInvFVBridge::isItemInTrash() const |
