[Radar] This belongs inside the cpp, we never use it from the outside.

This commit is contained in:
Lirusaito
2019-03-12 14:58:23 -04:00
parent e0ec2bd886
commit 1e0741cf17
2 changed files with 14 additions and 14 deletions

View File

@@ -457,6 +457,20 @@ void col_helper(const bool hide, LLCachedControl<S32> &setting, LLScrollListColu
}
}
enum AVATARS_COLUMN_ORDER
{
LIST_MARK,
LIST_AVATAR_NAME,
LIST_DISTANCE,
LIST_POSITION,
LIST_ALTITUDE,
LIST_ACTIVITY,
LIST_VOICE,
LIST_AGE,
LIST_TIME,
LIST_CLIENT,
};
//Macro to reduce redundant lines. Preprocessor concatenation and stringizing avoids bloat that
//wrapping in a class would create.
#define BIND_COLUMN_TO_SETTINGS(col, name)\

View File

@@ -239,20 +239,6 @@ public:
// when a line editor loses keyboard focus, it is committed.
// commit callbacks are named onCommitWidgetName by convention.
//void onCommitBaz(LLUICtrl* ctrl, void *userdata);
enum AVATARS_COLUMN_ORDER
{
LIST_MARK,
LIST_AVATAR_NAME,
LIST_DISTANCE,
LIST_POSITION,
LIST_ALTITUDE,
LIST_ACTIVITY,
LIST_VOICE,
LIST_AGE,
LIST_TIME,
LIST_CLIENT,
};
typedef boost::function<void (LLAvatarListEntry*)> avlist_command_t;