Browse Source

Unused local variable problem fixed.

Dario Manesku 11 years ago
parent
commit
5b49aea07a
1 changed files with 4 additions and 4 deletions
  1. 4 4
      examples/common/imgui/imgui.cpp

+ 4 - 4
examples/common/imgui/imgui.cpp

@@ -973,7 +973,7 @@ struct Imgui
 		return res;
 		return res;
 	}
 	}
 
 
-	void input(const char* _label, char* _str, uint32_t _len, bool /*_enabled*/)
+	void input(const char* _label, char* _str, uint32_t _len, bool _enabled)
 	{
 	{
 		m_widgetId++;
 		m_widgetId++;
 		const uint16_t id = (m_areaId << 8) | m_widgetId;
 		const uint16_t id = (m_areaId << 8) | m_widgetId;
@@ -1024,9 +1024,9 @@ struct Imgui
 			xx    += (labelWidth + 6);
 			xx    += (labelWidth + 6);
 			width -= (labelWidth + 6);
 			width -= (labelWidth + 6);
 		}
 		}
-//		const bool enabled = _enabled && isEnabled(m_areaId);
-// 		const bool over = enabled && inRect(xx, yy, width, height);
-// 		const bool res = inputLogic(id, over);
+		const bool enabled = _enabled && isEnabled(m_areaId);
+		const bool over = enabled && inRect(xx, yy, width, height);
+		inputLogic(id, over);
 
 
 		drawRoundedRect( (float)xx
 		drawRoundedRect( (float)xx
 			, (float)yy
 			, (float)yy