Changeset - r11273:b30a0242fd53
[Not reviewed]
master
0 2 0
belugas - 15 years ago 2009-03-06 03:01:35
belugas@openttd.org
(svn r15627) -Documentation: Add two Doxygen strings (Alberth).
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/window.cpp
Show inline comments
 
@@ -1344,13 +1344,13 @@ void ResizeWindow(Window *w, int x, int 
 
	if (resize_width)  w->width  += x;
 
	if (resize_height) w->height += y;
 

	
 
	w->SetDirty();
 
}
 

	
 
static bool _dragging_window;
 
static bool _dragging_window; ///< A window is being dragged or resized.
 

	
 
static bool HandleWindowDragging()
 
{
 
	/* Get out immediately if no window is being dragged at all. */
 
	if (!_dragging_window) return true;
 

	
src/window_gui.h
Show inline comments
 
@@ -581,13 +581,13 @@ enum WindowFlags {
 
	WF_TIMEOUT_MASK      = 7,       ///< Window timeout counter bit mask (3 bits)
 
	WF_DRAGGING          = 1 <<  3, ///< Window is being dragged
 
	WF_SCROLL_UP         = 1 <<  4, ///< Upper scroll button has been pressed, @see ScrollbarClickHandler()
 
	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()
 

	
 
	WF_WHITE_BORDER_ONE  = 1 << 11,
 
	WF_WHITE_BORDER_MASK = 1 << 12 | WF_WHITE_BORDER_ONE,
0 comments (0 inline, 0 general)