]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/windows/types/types.factor
ui.tools.listener.completion: change history completion popup to preserve newlines
[factor.git] / basis / windows / types / types.factor
index e6edc14dd178138d577507b777d321b0198647d4..aadb0d42a8bc8dcdef9b572d46fe92ea2dd7785d 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2005, 2006 Doug Coleman.
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 USING: alien.c-types alien.syntax classes.struct colors
-io.encodings.utf16n io.encodings.utf8 kernel math math.bitwise
+io.encodings.utf16 io.encodings.utf8 kernel math math.bitwise
 math.functions math.vectors sequences ;
 FROM: alien.c-types => float short ;
 IN: windows.types
@@ -322,7 +322,7 @@ STRUCT: PIXELFORMATDESCRIPTOR
     { dwDamageMask DWORD } ;
 
 : <RECT> ( loc dim -- RECT )
-    dupd v+ [ first2 ] bi@ RECT <struct-boa> ;
+    dupd v+ [ first2 ] bi@ RECT boa ;
 
 TYPEDEF: RECT* PRECT
 TYPEDEF: RECT* LPRECT