aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llremoteparcelrequest.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:34 -0500
committerJacek Antonelli2008-08-15 23:45:34 -0500
commitcd17687f01420952712a500107e0f93e7ab8d5f8 (patch)
treece48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llremoteparcelrequest.cpp
parentSecond Life viewer sources 1.19.0.5 (diff)
downloadmeta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.zip
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.gz
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.bz2
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.xz
Second Life viewer sources 1.19.1.0
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 {