fixed some warnings
parent
fe518bde8e
commit
c4fc085f74
|
|
@ -1549,7 +1549,7 @@ BOOL LLFloater::handleScrollWheel(S32 x, S32 y, S32 clicks)
|
|||
// virtual
|
||||
BOOL LLFloater::handleMouseUp(S32 x, S32 y, MASK mask)
|
||||
{
|
||||
lldebugs << "LLFloater::handleMouseUp calling LLPanel (really LLView)'s handleMouseUp (first initialized xui to: " << getPathname() << " )" << llendl;
|
||||
LL_DEBUGS() << "LLFloater::handleMouseUp calling LLPanel (really LLView)'s handleMouseUp (first initialized xui to: " << getPathname() << " )" << LL_ENDL;
|
||||
BOOL handled = LLPanel::handleMouseUp(x,y,mask); // Not implemented in LLPanel so this actually calls LLView
|
||||
if (handled) {
|
||||
LLViewerEventRecorder::instance().updateMouseEventInfo(x,y,-55,-55,getPathname());
|
||||
|
|
|
|||
|
|
@ -312,7 +312,7 @@ void LLUICtrl::onMouseLeave(S32 x, S32 y, MASK mask)
|
|||
BOOL LLUICtrl::handleMouseDown(S32 x, S32 y, MASK mask)
|
||||
{
|
||||
|
||||
lldebugs << "LLUICtrl::handleMouseDown calling LLView)'s handleMouseUp (first initialized xui to: " << getPathname() << " )" << llendl;
|
||||
LL_DEBUGS() << "LLUICtrl::handleMouseDown calling LLView)'s handleMouseUp (first initialized xui to: " << getPathname() << " )" << LL_ENDL;
|
||||
|
||||
BOOL handled = LLView::handleMouseDown(x,y,mask);
|
||||
|
||||
|
|
@ -320,7 +320,7 @@ BOOL LLUICtrl::handleMouseDown(S32 x, S32 y, MASK mask)
|
|||
{
|
||||
(*mMouseDownSignal)(this,x,y,mask);
|
||||
}
|
||||
lldebugs << "LLUICtrl::handleMousedown - handled is returning as: " << handled << " " << llendl;
|
||||
LL_DEBUGS() << "LLUICtrl::handleMousedown - handled is returning as: " << handled << " " << LL_ENDL;
|
||||
|
||||
if (handled) {
|
||||
LLViewerEventRecorder::instance().updateMouseEventInfo(x,y,-56,-56,getPathname());
|
||||
|
|
@ -332,7 +332,7 @@ BOOL LLUICtrl::handleMouseDown(S32 x, S32 y, MASK mask)
|
|||
BOOL LLUICtrl::handleMouseUp(S32 x, S32 y, MASK mask)
|
||||
{
|
||||
|
||||
lldebugs << "LLUICtrl::handleMouseUp calling LLView)'s handleMouseUp (first initialized xui to: " << getPathname() << " )" << llendl;
|
||||
LL_DEBUGS() << "LLUICtrl::handleMouseUp calling LLView)'s handleMouseUp (first initialized xui to: " << getPathname() << " )" << LL_ENDL;
|
||||
|
||||
BOOL handled = LLView::handleMouseUp(x,y,mask);
|
||||
if (handled) {
|
||||
|
|
@ -343,7 +343,7 @@ BOOL LLUICtrl::handleMouseUp(S32 x, S32 y, MASK mask)
|
|||
(*mMouseUpSignal)(this,x,y,mask);
|
||||
}
|
||||
|
||||
lldebugs << "LLUICtrl::handleMouseUp - handled for xui " << getPathname() << " - is returning as: " << handled << " " << llendl;
|
||||
LL_DEBUGS() << "LLUICtrl::handleMouseUp - handled for xui " << getPathname() << " - is returning as: " << handled << " " << LL_ENDL;
|
||||
|
||||
return handled;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -603,7 +603,7 @@ void LLView::onVisibilityChange ( BOOL new_visibility )
|
|||
// Consider changing returns to confirm success and know which widget grabbed it
|
||||
// For now assume success and log at highest xui possible
|
||||
// NOTE we log actual state - which may differ if it somehow failed to set visibility
|
||||
lldebugs << "LLView::handleVisibilityChange - now: " << getVisible() << " xui: " << viewp->getPathname() << " name: " << viewp->getName() << llendl;
|
||||
LL_DEBUGS() << "LLView::handleVisibilityChange - now: " << getVisible() << " xui: " << viewp->getPathname() << " name: " << viewp->getName() << LL_ENDL;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -700,8 +700,8 @@ LLView* LLView::childrenHandleMouseEvent(const METHOD& method, S32 x, S32 y, XDA
|
|||
if ((viewp->*method)( local_x, local_y, extra )
|
||||
|| (allow_mouse_block && viewp->blockMouseEvent( local_x, local_y )))
|
||||
{
|
||||
lldebugs << "LLView::childrenHandleMouseEvent calling updatemouseeventinfo - local_x|global x "<< local_x << " " << x << "local/global y " << local_y << " " << y << llendl;
|
||||
lldebugs << "LLView::childrenHandleMouseEvent getPathname for viewp result: " << viewp->getPathname() << "for this view: " << getPathname() << llendl;
|
||||
LL_DEBUGS() << "LLView::childrenHandleMouseEvent calling updatemouseeventinfo - local_x|global x "<< local_x << " " << x << "local/global y " << local_y << " " << y << LL_ENDL;
|
||||
LL_DEBUGS() << "LLView::childrenHandleMouseEvent getPathname for viewp result: " << viewp->getPathname() << "for this view: " << getPathname() << LL_ENDL;
|
||||
|
||||
LLViewerEventRecorder::instance().updateMouseEventInfo(x,y,-55,-55,getPathname());
|
||||
|
||||
|
|
|
|||
|
|
@ -53,14 +53,14 @@ void LLViewerEventRecorder::setEventLoggingOn() {
|
|||
mLog.open(mLogFilename, llofstream::out);
|
||||
}
|
||||
logEvents=true;
|
||||
lldebugs << "LLViewerEventRecorder::setEventLoggingOn event logging turned on" << llendl;
|
||||
LL_DEBUGS() << "LLViewerEventRecorder::setEventLoggingOn event logging turned on" << LL_ENDL;
|
||||
}
|
||||
|
||||
void LLViewerEventRecorder::setEventLoggingOff() {
|
||||
logEvents=false;
|
||||
mLog.flush();
|
||||
mLog.close();
|
||||
lldebugs << "LLViewerEventRecorder::setEventLoggingOff event logging turned off" << llendl;
|
||||
LL_DEBUGS() << "LLViewerEventRecorder::setEventLoggingOff event logging turned off" << LL_ENDL;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -101,10 +101,10 @@ void LLViewerEventRecorder::updateMouseEventInfo(S32 local_x, S32 local_y, S32 g
|
|||
|
||||
LLView * target_view = LLUI::resolvePath(LLUI::getRootView(), xui);
|
||||
if (! target_view) {
|
||||
lldebugs << "LLViewerEventRecorder::updateMouseEventInfo - xui path on file at moment is NOT valid - so DO NOT record these local coords" << llendl;
|
||||
LL_DEBUGS() << "LLViewerEventRecorder::updateMouseEventInfo - xui path on file at moment is NOT valid - so DO NOT record these local coords" << LL_ENDL;
|
||||
return;
|
||||
}
|
||||
lldebugs << "LLViewerEventRecorder::updateMouseEventInfo b4 updatemouseeventinfo - local_x|global x "<< this->local_x << " " << this->global_x << "local/global y " << this->local_y << " " << this->global_y << " mname: " << mName << " xui: " << xui << llendl;
|
||||
LL_DEBUGS() << "LLViewerEventRecorder::updateMouseEventInfo b4 updatemouseeventinfo - local_x|global x "<< this->local_x << " " << this->global_x << "local/global y " << this->local_y << " " << this->global_y << " mname: " << mName << " xui: " << xui << LL_ENDL;
|
||||
|
||||
|
||||
if (this->local_x < 1 && this->local_y<1 && local_x && local_y) {
|
||||
|
|
@ -121,7 +121,7 @@ void LLViewerEventRecorder::updateMouseEventInfo(S32 local_x, S32 local_y, S32 g
|
|||
xui = mName; // TODO review confirm we never call with partial path - also cAN REMOVE CHECK FOR "" - ON OTHER HAND IT'S PRETTY HARMLESS
|
||||
}
|
||||
|
||||
lldebugs << "LLViewerEventRecorder::updateMouseEventInfo after updatemouseeventinfo - local_x|global x "<< this->local_x << " " << this->global_x << "local/global y " << this->local_y << " " << this->global_y << " mname: " << mName << " xui: " << xui << llendl;
|
||||
LL_DEBUGS() << "LLViewerEventRecorder::updateMouseEventInfo after updatemouseeventinfo - local_x|global x "<< this->local_x << " " << this->global_x << "local/global y " << this->local_y << " " << this->global_y << " mname: " << mName << " xui: " << xui << LL_ENDL;
|
||||
}
|
||||
|
||||
void LLViewerEventRecorder::logVisibilityChange(std::string xui, std::string name, BOOL visibility, std::string event_subtype) {
|
||||
|
|
@ -158,10 +158,10 @@ std::string LLViewerEventRecorder::get_xui() {
|
|||
}
|
||||
void LLViewerEventRecorder::update_xui(std::string xui) {
|
||||
if (xui!="" && this->xui=="" ) {
|
||||
lldebugs << "LLViewerEventRecorder::update_xui to " << xui << llendl;
|
||||
LL_DEBUGS() << "LLViewerEventRecorder::update_xui to " << xui << LL_ENDL;
|
||||
this->xui=xui;
|
||||
} else {
|
||||
lldebugs << "LLViewerEventRecorder::update_xui called with empty string" << llendl;
|
||||
LL_DEBUGS() << "LLViewerEventRecorder::update_xui called with empty string" << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -200,11 +200,11 @@ void LLViewerEventRecorder::logKeyEvent(KEY key, MASK mask) {
|
|||
// (maybe it should) - instead it has a convenience method that generates the keydown and keyup events
|
||||
// Here we will use "type" as our event type
|
||||
|
||||
lldebugs << "LLVIewerEventRecorder::logKeyEvent Serialized LLSD for event " << event.asString() << "\n" << llendl;
|
||||
LL_DEBUGS() << "LLVIewerEventRecorder::logKeyEvent Serialized LLSD for event " << event.asString() << "\n" << LL_ENDL;
|
||||
|
||||
|
||||
//lldebugs << "[VITA] key_name: " << LLKeyboard::stringFromKey(key) << "mask: "<< mask << "handled by " << getName() << llendl;
|
||||
lldebugs << "LLVIewerEventRecorder::logKeyEvent key_name: " << LLKeyboard::stringFromKey(key) << "mask: "<< mask << llendl;
|
||||
//LL_DEBUGS() << "[VITA] key_name: " << LLKeyboard::stringFromKey(key) << "mask: "<< mask << "handled by " << getName() << LL_ENDL;
|
||||
LL_DEBUGS() << "LLVIewerEventRecorder::logKeyEvent key_name: " << LLKeyboard::stringFromKey(key) << "mask: "<< mask << LL_ENDL;
|
||||
|
||||
|
||||
recordEvent(event);
|
||||
|
|
@ -218,14 +218,14 @@ void LLViewerEventRecorder::playbackRecording() {
|
|||
// 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");
|
||||
|
||||
lldebugs << "[VITA] launching playback - leap command is: " << LLSDXMLStreamer(LeapCommand) << llendl;
|
||||
LL_DEBUGS() << "[VITA] launching playback - leap command is: " << LLSDXMLStreamer(LeapCommand) << LL_ENDL;
|
||||
LLLeap::create("", LeapCommand, false); // exception=false
|
||||
|
||||
}
|
||||
|
||||
|
||||
void LLViewerEventRecorder::recordEvent(LLSD event) {
|
||||
lldebugs << "LLViewerEventRecorder::recordEvent event written to log: " << LLSDXMLStreamer(event) << llendl;
|
||||
LL_DEBUGS() << "LLViewerEventRecorder::recordEvent event written to log: " << LLSDXMLStreamer(event) << LL_ENDL;
|
||||
mLog << event << std::endl;
|
||||
|
||||
}
|
||||
|
|
@ -243,7 +243,7 @@ void LLViewerEventRecorder::logKeyUnicodeEvent(llwchar uni_char) {
|
|||
// keycode...or
|
||||
// char
|
||||
|
||||
lldebugs << "Wrapped in conversion to wstring " << wstring_to_utf8str(LLWString( 1, uni_char)) << "\n" << llendl;
|
||||
LL_DEBUGS() << "Wrapped in conversion to wstring " << wstring_to_utf8str(LLWString( 1, uni_char)) << "\n" << LL_ENDL;
|
||||
|
||||
event.insert("char",
|
||||
LLSD( wstring_to_utf8str(LLWString( 1,uni_char)) )
|
||||
|
|
@ -257,8 +257,8 @@ void LLViewerEventRecorder::logKeyUnicodeEvent(llwchar uni_char) {
|
|||
|
||||
event.insert("event",LLSD("keyDown"));
|
||||
|
||||
lldebugs << "[VITA] unicode key: " << uni_char << llendl;
|
||||
lldebugs << "[VITA] dumpxml " << LLSDXMLStreamer(event) << "\n" << llendl;
|
||||
LL_DEBUGS() << "[VITA] unicode key: " << uni_char << LL_ENDL;
|
||||
LL_DEBUGS() << "[VITA] dumpxml " << LLSDXMLStreamer(event) << "\n" << LL_ENDL;
|
||||
|
||||
|
||||
recordEvent(event);
|
||||
|
|
|
|||
|
|
@ -275,7 +275,7 @@ public:
|
|||
{
|
||||
if (isGoodStatus(status))
|
||||
{
|
||||
llinfos << "Facebook: Info received" << llendl;
|
||||
LL_INFOS() << "Facebook: Info received" << LL_ENDL;
|
||||
LL_DEBUGS("FacebookConnect") << "Getting Facebook info successful. info: " << info << LL_ENDL;
|
||||
LLFacebookConnect::instance().storeInfo(info);
|
||||
}
|
||||
|
|
@ -453,7 +453,7 @@ void LLFacebookConnect::sharePhoto(LLPointer<LLImageFormatted> image, const std:
|
|||
}
|
||||
else
|
||||
{
|
||||
llwarns << "Image to upload is not a PNG or JPEG" << llendl;
|
||||
LL_WARNS() << "Image to upload is not a PNG or JPEG" << LL_ENDL;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -827,7 +827,7 @@ void LLSnapshotLivePreview::saveTexture()
|
|||
else
|
||||
{
|
||||
LLNotificationsUtil::add("ErrorEncodingSnapshot");
|
||||
llwarns << "Error encoding snapshot" << LL_ENDL;
|
||||
LL_WARNS() << "Error encoding snapshot" << LL_ENDL;
|
||||
}
|
||||
|
||||
add(LLStatViewer::SNAPSHOT, 1);
|
||||
|
|
@ -853,7 +853,7 @@ void LLSnapshotLivePreview::saveWeb()
|
|||
LLImageJPEG* jpg = dynamic_cast<LLImageJPEG*>(mFormattedImage.get());
|
||||
if(!jpg)
|
||||
{
|
||||
llwarns << "Formatted image not a JPEG" << LL_ENDL;
|
||||
LL_WARNS() << "Formatted image not a JPEG" << LL_ENDL;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1954,9 +1954,9 @@ class LLAdvancedViewerEventRecorder : public view_listener_t
|
|||
std::string command = userdata.asString();
|
||||
if ("start playback" == command)
|
||||
{
|
||||
llinfos << "Event Playback starting" << llendl;
|
||||
LL_INFOS() << "Event Playback starting" << LL_ENDL;
|
||||
LLViewerEventRecorder::instance().playbackRecording();
|
||||
llinfos << "Event Playback completed" << llendl;
|
||||
LL_INFOS() << "Event Playback completed" << LL_ENDL;
|
||||
}
|
||||
else if ("stop playback" == command)
|
||||
{
|
||||
|
|
@ -1965,12 +1965,12 @@ class LLAdvancedViewerEventRecorder : public view_listener_t
|
|||
else if ("start recording" == command)
|
||||
{
|
||||
LLViewerEventRecorder::instance().setEventLoggingOn();
|
||||
llinfos << "Event recording started" << llendl;
|
||||
LL_INFOS() << "Event recording started" << LL_ENDL;
|
||||
}
|
||||
else if ("stop recording" == command)
|
||||
{
|
||||
LLViewerEventRecorder::instance().setEventLoggingOff();
|
||||
llinfos << "Event recording stopped" << llendl;
|
||||
LL_INFOS() << "Event recording stopped" << LL_ENDL;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
|||
|
|
@ -6882,7 +6882,7 @@ bool teleport_request_callback(const LLSD& notification, const LLSD& response)
|
|||
LLUUID from_id = notification["payload"]["from_id"].asUUID();
|
||||
if(from_id.isNull())
|
||||
{
|
||||
llwarns << "from_id is NULL" << llendl;
|
||||
LL_WARNS() << "from_id is NULL" << LL_ENDL;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -963,7 +963,7 @@ BOOL LLViewerWindow::handleAnyMouseClick(LLWindow *window, LLCoordGL pos, MASK
|
|||
BOOL r = mouse_captor->handleAnyMouseClick(local_x, local_y, mask, clicktype, down);
|
||||
if (r) {
|
||||
|
||||
lldebugs << "LLViewerWindow::handleAnyMouseClick viewer with mousecaptor calling updatemouseeventinfo - local_x|global x "<< local_x << " " << x << "local/global y " << local_y << " " << y << llendl;
|
||||
LL_DEBUGS() << "LLViewerWindow::handleAnyMouseClick viewer with mousecaptor calling updatemouseeventinfo - local_x|global x "<< local_x << " " << x << "local/global y " << local_y << " " << y << LL_ENDL;
|
||||
|
||||
LLViewerEventRecorder::instance().setMouseGlobalCoords(x,y);
|
||||
LLViewerEventRecorder::instance().logMouseEvent(std::string(buttonstatestr),std::string(buttonname));
|
||||
|
|
@ -983,7 +983,7 @@ BOOL LLViewerWindow::handleAnyMouseClick(LLWindow *window, LLCoordGL pos, MASK
|
|||
if (r)
|
||||
{
|
||||
|
||||
lldebugs << "LLViewerWindow::handleAnyMouseClick calling updatemouseeventinfo - global x "<< " " << x << "global y " << y << "buttonstate: " << buttonstatestr << " buttonname " << buttonname << llendl;
|
||||
LL_DEBUGS() << "LLViewerWindow::handleAnyMouseClick calling updatemouseeventinfo - global x "<< " " << x << "global y " << y << "buttonstate: " << buttonstatestr << " buttonname " << buttonname << LL_ENDL;
|
||||
|
||||
LLViewerEventRecorder::instance().setMouseGlobalCoords(x,y);
|
||||
|
||||
|
|
@ -2531,7 +2531,7 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask)
|
|||
||(gLoginMenuBarView && gLoginMenuBarView->handleKey(key, mask, TRUE))
|
||||
||(gMenuHolder && gMenuHolder->handleKey(key, mask, TRUE)))
|
||||
{
|
||||
lldebugs << "LLviewerWindow::handleKey handle nav keys for nav" << llendl;
|
||||
LL_DEBUGS() << "LLviewerWindow::handleKey handle nav keys for nav" << LL_ENDL;
|
||||
LLViewerEventRecorder::instance().logKeyEvent(key,mask);
|
||||
return TRUE;
|
||||
}
|
||||
|
|
@ -2564,7 +2564,7 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask)
|
|||
// if nothing has focus, go to first or last UI element as appropriate
|
||||
if (key == KEY_TAB && (mask & MASK_CONTROL || gFocusMgr.getKeyboardFocus() == NULL))
|
||||
{
|
||||
llwarns << "LLviewerWindow::handleKey give floaters first chance at tab key " << llendl;
|
||||
LL_WARNS() << "LLviewerWindow::handleKey give floaters first chance at tab key " << LL_ENDL;
|
||||
if (gMenuHolder) gMenuHolder->hideMenus();
|
||||
|
||||
// if CTRL-tabbing (and not just TAB with no focus), go into window cycle mode
|
||||
|
|
@ -2626,17 +2626,17 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask)
|
|||
if (keyboard_focus->handleKey(key, mask, FALSE))
|
||||
{
|
||||
|
||||
lldebugs << "LLviewerWindow::handleKey - in 'traverse up' - no loops seen... just called keyboard_focus->handleKey an it returned true" << llendl;
|
||||
LL_DEBUGS() << "LLviewerWindow::handleKey - in 'traverse up' - no loops seen... just called keyboard_focus->handleKey an it returned true" << LL_ENDL;
|
||||
LLViewerEventRecorder::instance().logKeyEvent(key,mask);
|
||||
return TRUE;
|
||||
} else {
|
||||
lldebugs << "LLviewerWindow::handleKey - in 'traverse up' - no loops seen... just called keyboard_focus->handleKey an it returned FALSE" << llendl;
|
||||
LL_DEBUGS() << "LLviewerWindow::handleKey - in 'traverse up' - no loops seen... just called keyboard_focus->handleKey an it returned FALSE" << LL_ENDL;
|
||||
}
|
||||
}
|
||||
|
||||
if( LLToolMgr::getInstance()->getCurrentTool()->handleKey(key, mask) )
|
||||
{
|
||||
lldebugs << "LLviewerWindow::handleKey toolbar handling?" << llendl;
|
||||
LL_DEBUGS() << "LLviewerWindow::handleKey toolbar handling?" << LL_ENDL;
|
||||
LLViewerEventRecorder::instance().logKeyEvent(key,mask);
|
||||
return TRUE;
|
||||
}
|
||||
|
|
@ -2644,7 +2644,7 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask)
|
|||
// Try for a new-format gesture
|
||||
if (LLGestureMgr::instance().triggerGesture(key, mask))
|
||||
{
|
||||
lldebugs << "LLviewerWindow::handleKey new gesture feature" << llendl;
|
||||
LL_DEBUGS() << "LLviewerWindow::handleKey new gesture feature" << LL_ENDL;
|
||||
LLViewerEventRecorder::instance().logKeyEvent(key,mask);
|
||||
return TRUE;
|
||||
}
|
||||
|
|
@ -2653,7 +2653,7 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask)
|
|||
// don't pass it down to the menus.
|
||||
if (gGestureList.trigger(key, mask))
|
||||
{
|
||||
lldebugs << "LLviewerWindow::handleKey check gesture trigger" << llendl;
|
||||
LL_DEBUGS() << "LLviewerWindow::handleKey check gesture trigger" << LL_ENDL;
|
||||
LLViewerEventRecorder::instance().logKeyEvent(key,mask);
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8042,7 +8042,7 @@ LLColor4 LLVOAvatar::calcMutedAVColor(F32 value, S32 range_low, S32 range_high)
|
|||
//LL_INFOS() << "From value " << std::setprecision(3) << value << " returning color " << new_color
|
||||
// << " using indexes " << spectrum_index_1 << ", " << spectrum_index_2
|
||||
// << " and fractBetween " << fractBetween
|
||||
// << llendl;
|
||||
// << LL_ENDL;
|
||||
|
||||
return new_color;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue