diff options
author | Jacek Antonelli | 2008-08-15 23:45:18 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:18 -0500 |
commit | ad2310656299467c775738fcdbc5840bd492df8d (patch) | |
tree | 61a3e7b568d04f12e7a42c962828e9334954811d /linden/indra/newview/llpanelclassified.h | |
parent | Second Life viewer sources 1.18.5.1-RC (diff) | |
download | meta-impy-ad2310656299467c775738fcdbc5840bd492df8d.zip meta-impy-ad2310656299467c775738fcdbc5840bd492df8d.tar.gz meta-impy-ad2310656299467c775738fcdbc5840bd492df8d.tar.bz2 meta-impy-ad2310656299467c775738fcdbc5840bd492df8d.tar.xz |
Second Life viewer sources 1.18.5.2-RC
Diffstat (limited to '')
-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 | ||