(svn r11554) -Codechange: be more consistent with the naming of the widget functions.
authorrubidium
Sun, 02 Dec 2007 13:32:41 +0000
changeset 7996 809895d51e05
parent 7995 36f4cc1839fb
child 7997 df87ccd00a96
(svn r11554) -Codechange: be more consistent with the naming of the widget functions.
src/window.h
--- a/src/window.h	Sun Dec 02 12:10:48 2007 +0000
+++ b/src/window.h	Sun Dec 02 13:32:41 2007 +0000
@@ -288,7 +288,7 @@
 	void ShowWidget(byte widget_index);
 	bool IsWidgetHidden(byte widget_index) const;
 	void SetWidgetLoweredState(byte widget_index, bool lowered_stat);
-	void ToggleLoweredState(byte widget_index);
+	void ToggleWidgetLoweredState(byte widget_index);
 	void LowerWidget(byte widget_index);
 	void RaiseWidget(byte widget_index);
 	bool IsWidgetLowered(byte widget_index) const;
@@ -938,7 +938,7 @@
  * Invert the lowered/raised  status of a widget.
  * @param widget_index : index of this widget in the window
  */
-inline void Window::ToggleLoweredState(byte widget_index)
+inline void Window::ToggleWidgetLoweredState(byte widget_index)
 {
 	assert(widget_index < this->widget_count);
 	ToggleBit(this->widget[widget_index].display_flags, WIDG_LOWERED);