aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llremoteparcelrequest.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llremoteparcelrequest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llremoteparcelrequest.cpp b/linden/indra/newview/llremoteparcelrequest.cpp
index abc6569..e0a6ada 100644
--- a/linden/indra/newview/llremoteparcelrequest.cpp
+++ b/linden/indra/newview/llremoteparcelrequest.cpp
@@ -44,7 +44,7 @@
44#include "llview.h" 44#include "llview.h"
45#include "message.h" 45#include "message.h"
46 46
47LLRemoteParcelRequestResponder::LLRemoteParcelRequestResponder(LLViewHandle place_panel_handle) 47LLRemoteParcelRequestResponder::LLRemoteParcelRequestResponder(LLHandle<LLPanel> place_panel_handle)
48{ 48{
49 mPlacePanelHandle = place_panel_handle; 49 mPlacePanelHandle = place_panel_handle;
50} 50}
@@ -53,7 +53,7 @@ void LLRemoteParcelRequestResponder::result(const LLSD& content)
53{ 53{
54 LLUUID parcel_id = content["parcel_id"]; 54 LLUUID parcel_id = content["parcel_id"];
55 55
56 LLPanelPlace* place_panelp = (LLPanelPlace*)LLPanel::getPanelByHandle(mPlacePanelHandle); 56 LLPanelPlace* place_panelp = (LLPanelPlace*)mPlacePanelHandle.get();
57 57
58 if(place_panelp) 58 if(place_panelp)
59 { 59 {
@@ -67,7 +67,7 @@ void LLRemoteParcelRequestResponder::error(U32 status, const std::string& reason
67{ 67{
68 llinfos << "LLRemoteParcelRequest::error(" 68 llinfos << "LLRemoteParcelRequest::error("
69 << status << ": " << reason << ")" << llendl; 69 << status << ": " << reason << ")" << llendl;
70 LLPanelPlace* place_panelp = (LLPanelPlace*)LLPanel::getPanelByHandle(mPlacePanelHandle); 70 LLPanelPlace* place_panelp = (LLPanelPlace*)mPlacePanelHandle.get();
71 71
72 if(place_panelp) 72 if(place_panelp)
73 { 73 {