Form.st
branchjv
changeset 7286 c3b4c3c664d4
parent 7244 9c77b73e65d8
parent 7260 5b9f9cbd2435
child 7287 1e2a3258dd8a
equal deleted inserted replaced
7285:d047c5fb149a 7286:c3b4c3c664d4
  1795                 BlackAndWhiteColorMap := Array with:(Color white) with:(Color black)
  1795                 BlackAndWhiteColorMap := Array with:(Color white) with:(Color black)
  1796             ].
  1796             ].
  1797             localColorMap := BlackAndWhiteColorMap.
  1797             localColorMap := BlackAndWhiteColorMap.
  1798         ].
  1798         ].
  1799     ].
  1799     ].
  1800     self graphicsDevice notNil ifTrue:[
  1800     device notNil ifTrue:[
  1801         gc createPixmapWidth:w height:h depth:d.
  1801         gc createPixmapWidth:w height:h depth:d.
  1802         realized := true.
  1802         realized := true.
  1803     ].
  1803     ].
  1804 !
  1804 !
  1805 
  1805 
  1895             BlackAndWhiteColorMap := Array with:(Color white) with:(Color black)
  1895             BlackAndWhiteColorMap := Array with:(Color white) with:(Color black)
  1896         ].
  1896         ].
  1897         localColorMap := BlackAndWhiteColorMap.
  1897         localColorMap := BlackAndWhiteColorMap.
  1898     ].
  1898     ].
  1899 
  1899 
  1900     self graphicsDevice notNil ifTrue:[
  1900     device notNil ifTrue:[
  1901         gc createBitmapFromArray:bytes width:w height:h.
  1901         gc createBitmapFromArray:bytes width:w height:h.
  1902         realized := true.
  1902         realized := true.
  1903     ].
  1903     ].
  1904 !
  1904 !
  1905 
  1905