Move tooltip hosting from llscrolllistitem to llscrolllistcell

This commit is contained in:
Lirusaito
2013-07-15 22:24:34 -04:00
parent 1ef0cba32c
commit cb01bbb8ef
6 changed files with 36 additions and 17 deletions

View File

@@ -53,9 +53,6 @@ public:
void setUserdata( void* userdata ) { mUserdata = userdata; }
void* getUserdata() const { return mUserdata; }
void setToolTip(const std::string tool_tip) { mToolTip=tool_tip; }
std::string getToolTip() { return mToolTip; }
virtual LLUUID getUUID() const { return mItemValue.asUUID(); }
LLSD getValue() const { return mItemValue; }
@@ -84,7 +81,6 @@ private:
BOOL mEnabled;
void* mUserdata;
LLSD mItemValue;
std::string mToolTip;
std::vector<LLScrollListCell *> mColumns;
LLRect mRectangle;
};