diff options
Diffstat (limited to 'indra/llui/llviewereventrecorder.cpp')
| -rw-r--r-- | indra/llui/llviewereventrecorder.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/indra/llui/llviewereventrecorder.cpp b/indra/llui/llviewereventrecorder.cpp index 8754cfebbb..cb000aef74 100644 --- a/indra/llui/llviewereventrecorder.cpp +++ b/indra/llui/llviewereventrecorder.cpp @@ -44,7 +44,7 @@ LLViewerEventRecorder::LLViewerEventRecorder() {  bool LLViewerEventRecorder::displayViewerEventRecorderMenuItems() { -  return LLUI::sSettingGroups["config"]->getBOOL("ShowEventRecorderMenuItems"); +  return LLUI::getInstance()->mSettingGroups["config"]->getBOOL("ShowEventRecorderMenuItems");  } @@ -99,7 +99,7 @@ void LLViewerEventRecorder::setMouseGlobalCoords(S32 x, S32 y) {  void LLViewerEventRecorder::updateMouseEventInfo(S32 local_x, S32 local_y, S32 global_x, S32 global_y, std::string mName) { -  LLView * target_view = LLUI::resolvePath(LLUI::getRootView(), xui); +  LLView * target_view = LLUI::getInstance()->resolvePath(LLUI::getInstance()->getRootView(), xui);    if (! target_view) {      LL_DEBUGS() << "LLViewerEventRecorder::updateMouseEventInfo - xui path on file at moment is NOT valid - so DO NOT record these local coords" << LL_ENDL;      return; @@ -216,7 +216,7 @@ void LLViewerEventRecorder::playbackRecording() {    LLSD LeapCommand;    // ivita sets this on startup, it also sends commands to the viewer to make start, stop, and playback menu items visible in viewer -  LeapCommand =LLUI::sSettingGroups["config"]->getLLSD("LeapPlaybackEventsCommand"); +  LeapCommand =LLUI::getInstance()->mSettingGroups["config"]->getLLSD("LeapPlaybackEventsCommand");    LL_DEBUGS() << "[VITA] launching playback - leap command is: " << LLSDXMLStreamer(LeapCommand) << LL_ENDL;    LLLeap::create("", LeapCommand, false); // exception=false | 
