[ros-diffs] [cwittich] 21000: forgot to commit the DrawEdge stuff

cwittich at svn.reactos.org cwittich at svn.reactos.org
Mon Jan 23 13:39:52 CET 2006


forgot to commit the DrawEdge stuff
Modified: trunk/reactos/subsys/system/explorer/utility/window.cpp
  _____  

Modified: trunk/reactos/subsys/system/explorer/utility/window.cpp
--- trunk/reactos/subsys/system/explorer/utility/window.cpp
2006-01-23 00:35:52 UTC (rev 20999)
+++ trunk/reactos/subsys/system/explorer/utility/window.cpp
2006-01-23 12:39:35 UTC (rev 21000)
@@ -387,12 +387,15 @@

 {
 	switch(nmsg) {
 	  case WM_PAINT: {
+        RECT rc;
 		PaintCanvas canvas(_hwnd);
 		ClientRect rt(_hwnd);
 		rt.left = _split_pos-SPLIT_WIDTH/2;
 		rt.right = _split_pos+SPLIT_WIDTH/2+1;
-		HBRUSH lastBrush = SelectBrush(canvas,
GetStockBrush(COLOR_SPLITBAR));
+		HBRUSH lastBrush = SelectBrush(canvas,
GetStockBrush(LTGRAY_BRUSH));
 		Rectangle(canvas, rt.left, rt.top-1, rt.right,
rt.bottom+1);
+        SetRect(&rc, rt.left, rt.top-1, rt.right, rt.bottom+1);
+        DrawEdge(canvas, &rc, EDGE_RAISED, BF_RECT);
 		SelectObject(canvas, lastBrush);
 		break;}
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.reactos.org/pipermail/ros-diffs/attachments/20060123/dfd77a3e/attachment.html


More information about the Ros-diffs mailing list