diff options
Diffstat (limited to 'linden/indra/newview/llinventoryview.h')
-rw-r--r-- | linden/indra/newview/llinventoryview.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linden/indra/newview/llinventoryview.h b/linden/indra/newview/llinventoryview.h index e8f3076..c8c3947 100644 --- a/linden/indra/newview/llinventoryview.h +++ b/linden/indra/newview/llinventoryview.h | |||
@@ -258,7 +258,7 @@ public: | |||
258 | 258 | ||
259 | void toggleFindOptions(); | 259 | void toggleFindOptions(); |
260 | 260 | ||
261 | LLInventoryViewFinder* getFinder() { return (LLInventoryViewFinder*)LLFloater::getFloaterByHandle(mFinderHandle); } | 261 | LLInventoryViewFinder* getFinder() { return (LLInventoryViewFinder*)mFinderHandle.get(); } |
262 | 262 | ||
263 | protected: | 263 | protected: |
264 | // internal initialization code | 264 | // internal initialization code |
@@ -267,7 +267,7 @@ protected: | |||
267 | protected: | 267 | protected: |
268 | LLSearchEditor* mSearchEditor; | 268 | LLSearchEditor* mSearchEditor; |
269 | LLTabContainer* mFilterTabs; | 269 | LLTabContainer* mFilterTabs; |
270 | LLViewHandle mFinderHandle; | 270 | LLHandle<LLFloater> mFinderHandle; |
271 | LLInventoryPanel* mActivePanel; | 271 | LLInventoryPanel* mActivePanel; |
272 | LLSaveFolderState* mSavedFolderState; | 272 | LLSaveFolderState* mSavedFolderState; |
273 | 273 | ||
@@ -372,3 +372,4 @@ void rez_attachment(LLViewerInventoryItem* item, LLViewerJointAttachment* attach | |||
372 | #endif // LL_LLINVENTORYVIEW_H | 372 | #endif // LL_LLINVENTORYVIEW_H |
373 | 373 | ||
374 | 374 | ||
375 | |||