From 181d586a7c13a296a1b9355e15e55dda7ac0fcb2 Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 23 Oct 2005 13:04:44 +0000 Subject: (svn r3078) Some more stuff, which piled up: - const, whitespace, indentation, bracing, GB/SB, pointless casts - use the trinary operator where appropriate - data types (uint[] -> AcceptedCargo, ...) - if cascade -> switch - if (ptr) -> if (ptr != NULL) - DeMorgan's Law - Fix some comments - 0 -> '\0', change magic numbers to symbolic constants --- window.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'window.h') diff --git a/window.h b/window.h index 8890777c4..5bc61c665 100644 --- a/window.h +++ b/window.h @@ -553,7 +553,7 @@ void DispatchMouseWheelEvent(Window *w, int widget, int wheel); void DrawOverlappedWindow(Window *w, int left, int top, int right, int bottom); void CallWindowEventNP(Window *w, int event); void CallWindowTickEvent(void); -void SetWindowDirty(Window *w); +void SetWindowDirty(const Window* w); void SendWindowMessageW(Window *w, uint msg, uint wparam, uint lparam); void SendWindowMessage(WindowClass wnd_class, WindowNumber wnd_num, uint msg, uint wparam, uint lparam); -- cgit v1.2.3-54-g00ecf