diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index 691cd9e0c0a16e73fb10e14ed04458a2f94a2892..af25726a9495d8667721514ea3bc922469d9c688 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -3165,13 +3165,13 @@ void append_xui_tooltip(LLView* viewp, LLToolTip::Params& params)
 	}
 }
 
-static LLTrace::BlockTimerStatHandle ftm("Update UI");
+static LLTrace::BlockTimerStatHandle FTM_UPDATE_UI("Update UI");
 
 // Update UI based on stored mouse position from mouse-move
 // event processing.
 void LLViewerWindow::updateUI()
 {
-	LL_RECORD_BLOCK_TIME(ftm);
+	LL_RECORD_BLOCK_TIME(FTM_UPDATE_UI);
 
 	static std::string last_handle_msg;
 
@@ -3553,7 +3553,6 @@ void LLViewerWindow::updateUI()
 
 		// Show a new tool tip (or update one that is already shown)
 		BOOL tool_tip_handled = FALSE;
-		std::string tool_tip_msg;
 		if( handled 
 			&& !mWindow->isCursorHidden())
 		{