summaryrefslogtreecommitdiff
path: root/indra/newview/lllandmarkactions.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/lllandmarkactions.h')
-rw-r--r--indra/newview/lllandmarkactions.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/lllandmarkactions.h b/indra/newview/lllandmarkactions.h
index e04d1bf543..12c7398f6a 100644
--- a/indra/newview/lllandmarkactions.h
+++ b/indra/newview/lllandmarkactions.h
@@ -41,7 +41,7 @@
class LLLandmarkActions
{
public:
- typedef boost::function<void(const LLVector3d& global_pos, std::string& slurl)> slurl_signal_t;
+ typedef boost::function<void(std::string& slurl)> slurl_callback_t;
/**
* @brief Fetches landmark LLViewerInventoryItems for the given landmark name.
@@ -80,7 +80,7 @@ public:
/**
* @brief Creates SLURL for given global position.
*/
- static void getSLURLfromPosGlobal(const LLVector3d& global_pos, slurl_signal_t signal);
+ static void getSLURLfromPosGlobal(const LLVector3d& global_pos, slurl_callback_t cb);
/**
* @brief Gets landmark global position specified by inventory LLUUID.
@@ -96,7 +96,7 @@ private:
LLLandmarkActions();
LLLandmarkActions(const LLLandmarkActions&);
- static void onRegionResponse(slurl_signal_t signal,
+ static void onRegionResponse(slurl_callback_t cb,
const LLVector3d& global_pos,
U64 region_handle,
const std::string& url,