diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/panelradar.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/newview/panelradar.h b/linden/indra/newview/panelradar.h index af0ca2a..c86a0ce 100644 --- a/linden/indra/newview/panelradar.h +++ b/linden/indra/newview/panelradar.h | |||
@@ -31,9 +31,10 @@ | |||
31 | 31 | ||
32 | 32 | ||
33 | #include "llpanel.h" | 33 | #include "llpanel.h" |
34 | #include "llscrolllistctrl.h" | ||
35 | 34 | ||
36 | class PanelRadarEntry; | 35 | class PanelRadarEntry; |
36 | class LLScrollListCtrl; | ||
37 | class LLTabContainer; | ||
37 | 38 | ||
38 | class PanelRadar : public LLPanel | 39 | class PanelRadar : public LLPanel |
39 | { | 40 | { |
@@ -72,13 +73,16 @@ private: | |||
72 | // Removes avatar IDs no longer known to the viewer | 73 | // Removes avatar IDs no longer known to the viewer |
73 | void removeDeadEntries(const std::vector<LLUUID>& agent_ids); | 74 | void removeDeadEntries(const std::vector<LLUUID>& agent_ids); |
74 | 75 | ||
76 | LLTabContainer* mRadarTabs; | ||
75 | LLScrollListCtrl* mRadarList; | 77 | LLScrollListCtrl* mRadarList; |
76 | LLUUID mSelectedAvatar; | 78 | LLUUID mSelectedAvatar; |
79 | F32 mSelectedDistance; | ||
77 | 80 | ||
78 | bool visibleItemsSelected() const; | 81 | bool visibleItemsSelected() const; |
79 | bool isKickable(const LLUUID &agent_id); | 82 | bool isKickable(const LLUUID &agent_id); |
80 | 83 | ||
81 | std::string getSelectedName(const LLUUID &agent_id); | 84 | std::string getSelectedName(const LLUUID &agent_id); |
85 | F32 getSelectedDistance() { return mSelectedDistance; } | ||
82 | 86 | ||
83 | void sendAvatarPropertiesRequest(const LLUUID &agent_id); | 87 | void sendAvatarPropertiesRequest(const LLUUID &agent_id); |
84 | 88 | ||