UIPainter.st
changeset 248 1ee61b7bb36a
parent 245 d48281345935
child 250 d2d028799b01
--- a/UIPainter.st	Mon Jul 28 11:34:50 1997 +0200
+++ b/UIPainter.st	Mon Jul 28 11:58:25 1997 +0200
@@ -2171,29 +2171,30 @@
 imageMasterChild
 
     ImageMasterChild isNil ifTrue:[
-        ImageMasterChild := Image fromFile:('xpmBitmaps/document_images/tiny_file_lock.xpm').
+        ImageMasterChild := Image fromFile:('xpmBitmaps/document_images/tiny_file_plain_gray.xpm').
     ].
-  ^ ImageMasterChild
-
-"
-ImageMasterChild := nil
-"
-
-
+    ^ ImageMasterChild
+
+    "
+    ImageMasterChild := nil
+    "
+
+    "Modified: 28.7.1997 / 11:55:22 / cg"
 !
 
 imageMasterParent
 
     ImageMasterParent isNil ifTrue:[
-        ImageMasterParent := Image fromFile:('xpmBitmaps/document_images/tiny_yellow_dir_locked.xpm').
+"/        ImageMasterParent := Image fromFile:('xpmBitmaps/document_images/tiny_yellow_dir_locked.xpm').
+        ImageMasterParent := Image fromFile:('xpmBitmaps/document_images/tiny_yellow_dir_gray.xpm').
     ].
-  ^ ImageMasterParent
-
-"
-ImageMasterParent := nil
-"
-
-
+    ^ ImageMasterParent
+
+    "
+    ImageMasterParent := nil
+    "
+
+    "Modified: 28.7.1997 / 11:56:29 / cg"
 ! !
 
 !UIPainter::TreeView class methodsFor:'documentation'!