From: George H. <geo...@us...> - 2006-05-22 12:01:46
|
Update of /cvsroot/win32forth/win32forth/Templates In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv28611/win32forth/Templates Modified Files: PopupWindow.f Log Message: gah: Added WS_EX_TOOLWINDOW to extended style to suppress icon on taskbar Index: PopupWindow.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/Templates/PopupWindow.f,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PopupWindow.f 21 May 2006 14:17:34 -0000 1.2 --- PopupWindow.f 22 May 2006 12:01:39 -0000 1.3 *************** *** 19,22 **** --- 19,23 ---- :M ClassInit: ( -- ) ClassInit: super PopupOnItem SetPopupBar: Self ;M :M WindowStyle: ( -- style ) WS_POPUP ;M + :M ExWindowStyle: ( -- extended_style ) WS_EX_TOOLWINDOW ;M :M StartSize: ( -- width height ) 1 1 ;M :M StartPos: ( -- x y ) mousex mousey ;M |