FileApplicationNoteBook.st
changeset 6833 caeedd92f25c
parent 6796 23a7b7f0bd39
child 7103 a95f550bd9bd
--- a/FileApplicationNoteBook.st	Tue Jul 25 11:25:37 2006 +0200
+++ b/FileApplicationNoteBook.st	Tue Jul 25 11:25:47 2006 +0200
@@ -3614,10 +3614,12 @@
 
     img := self image.
     img notNil ifTrue:[
-        self withWaitCursorDo:[
+"/        self withWaitCursorDo:[
             img edit.
-        ]
-    ].
+"/        ]
+    ].
+
+    "Modified: / 25-07-2006 / 09:09:20 / cg"
 !
 
 image
@@ -3641,14 +3643,16 @@
     [
         |img|
 
-        imageView withCursor:(Cursor wait) do:[
+"/        imageView withCursor:(Cursor wait) do:[
             img := self image.
             img notNil ifTrue:[
                 self image:img.
                 imageView image:img
             ].
-        ].
+"/        ].
     ] fork.
+
+    "Modified: / 25-07-2006 / 09:09:33 / cg"
 ! !
 
 !FileApplicationNoteBook::ImageViewApplication methodsFor:'aspects'!
@@ -4350,14 +4354,16 @@
                 contents := self getContentsAsTextWithSizeLimit:sizeLimit.
             ] ifFalse:[
                 presentation == #hexDump ifTrue:[
-                    self withWaitCursorDo:[
+"/                    self withWaitCursorDo:[
                         contents := AbstractFileBrowser contentsOfFileAsHexDump:file.
-                    ]
+"/                    ]
                 ]
             ]
         ].
     ].
     ^ contents.
+
+    "Modified: / 25-07-2006 / 09:09:45 / cg"
 !
 
 getContentsAsTextWithSizeLimit:sizeLimitOrNil
@@ -4490,9 +4496,11 @@
 reload
 
     textEditorModificationTime := self fileName modificationTime.
-    self withWaitCursorDo:[
+"/    self withWaitCursorDo:[
         self setContents.
-    ].
+"/    ].
+
+    "Modified: / 25-07-2006 / 09:09:55 / cg"
 !
 
 saveWithAskForFilename:ask
@@ -5540,5 +5548,5 @@
 !FileApplicationNoteBook class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.202 2006-06-20 13:20:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.203 2006-07-25 09:25:47 cg Exp $'
 ! !