changeset 11278:d1a6e82f03c5 draft

(svn r15627) -Documentation: Add two Doxygen strings (Alberth).
author belugas <belugas@openttd.org>
date Fri, 06 Mar 2009 03:01:35 +0000
parents 15487697cc18
children 2f792e7a69dd
files src/window.cpp src/window_gui.h
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -1347,7 +1347,7 @@
 	w->SetDirty();
 }
 
-static bool _dragging_window;
+static bool _dragging_window; ///< A window is being dragged or resized.
 
 static bool HandleWindowDragging()
 {
--- a/src/window_gui.h
+++ b/src/window_gui.h
@@ -584,7 +584,7 @@
 	WF_SCROLL_DOWN       = 1 <<  5, ///< Lower scroll button has been pressed, @see ScrollbarClickHandler()
 	WF_SCROLL_MIDDLE     = 1 <<  6, ///< Scrollbar scrolling, @see ScrollbarClickHandler()
 	WF_HSCROLL           = 1 <<  7,
-	WF_SIZING            = 1 <<  8,
+	WF_SIZING            = 1 <<  8, ///< Window is being resized.
 	WF_STICKY            = 1 <<  9, ///< Window is made sticky by user
 
 	WF_DISABLE_VP_SCROLL = 1 << 10, ///< Window does not do autoscroll, @see HandleAutoscroll()