/usr/share/gnudatalanguage/coyote/cw_spacer.pro is in gdl-coyote 2016.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | FUNCTION CW_Spacer, parent, spacer
IF N_Elements(parent) EQ 0 THEN Message, 'Parent ID parameter requried.'
IF N_Elements(spacer) EQ 0 THEN spacer = 10
base = Widget_Base(parent, Row=1)
spacer = Widget_Label(base, Value=String(Replicate(32B, spacer)))
RETURN, base
END
|