diff options
Diffstat (limited to 'linden/indra/newview/llpanelclassified.h')
-rw-r--r-- | linden/indra/newview/llpanelclassified.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/linden/indra/newview/llpanelclassified.h b/linden/indra/newview/llpanelclassified.h index 6ebac4c..a2bb29b 100644 --- a/linden/indra/newview/llpanelclassified.h +++ b/linden/indra/newview/llpanelclassified.h | |||
@@ -81,7 +81,7 @@ public: | |||
81 | void setClassifiedID(const LLUUID& id); | 81 | void setClassifiedID(const LLUUID& id); |
82 | void setClickThroughText(const std::string& text); | 82 | void setClickThroughText(const std::string& text); |
83 | static void setClickThrough(const LLUUID& classified_id, | 83 | static void setClickThrough(const LLUUID& classified_id, |
84 | S32 teleport, S32 map, S32 profile); | 84 | S32 teleport, S32 map, S32 profile, bool from_new_table); |
85 | 85 | ||
86 | // check that the title is valid (E.G. starts with a number or letter) | 86 | // check that the title is valid (E.G. starts with a number or letter) |
87 | BOOL titleIsValid(); | 87 | BOOL titleIsValid(); |
@@ -129,6 +129,14 @@ protected: | |||
129 | LLUUID mParcelID; | 129 | LLUUID mParcelID; |
130 | S32 mPriceForListing; | 130 | S32 mPriceForListing; |
131 | 131 | ||
132 | // Needed for stat tracking | ||
133 | S32 mTeleportClicksOld; | ||
134 | S32 mMapClicksOld; | ||
135 | S32 mProfileClicksOld; | ||
136 | S32 mTeleportClicksNew; | ||
137 | S32 mMapClicksNew; | ||
138 | S32 mProfileClicksNew; | ||
139 | |||
132 | // Data will be requested on first draw | 140 | // Data will be requested on first draw |
133 | BOOL mDataRequested; | 141 | BOOL mDataRequested; |
134 | 142 | ||