#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Mon, 28 Nov 2016 21:37:43 +0100
changeset 17118 5defea726711
parent 17117 7ccd2a0f7940
child 17119 472d1ea1a076
#REFACTORING by stefan class: FileApplicationNoteBook handle OsError (superclass) instead of OperatingSystem accessDeniedErrorSignal
FileApplicationNoteBook.st
--- a/FileApplicationNoteBook.st	Mon Nov 28 21:32:13 2016 +0100
+++ b/FileApplicationNoteBook.st	Mon Nov 28 21:37:43 2016 +0100
@@ -5892,7 +5892,7 @@
     fnDir exists ifFalse:[
         [
             fnDir recursiveMakeDirectory.
-        ] on:OperatingSystem accessDeniedErrorSignal do:[:ex|
+        ] on:OsError do:[:ex|
             Dialog warn:(ex description).
             ^ self.
         ]