Skip to content

Commit

Permalink
fix inform: dependency in commandLineUIManager
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-krivanek committed Nov 6, 2019
1 parent 723c828 commit 69d8db1
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions src/UIManager/CommandLineUIManager.class.st
Expand Up @@ -214,8 +214,7 @@ CommandLineUIManager >> inform: aString [
nextPutAll: aString; cr;
nextPutAll: (String new: 79 withAll: $= ); cr].

Smalltalk logDuring: logBlock.
aString traceCr.
Smalltalk logDuring: logBlock.
]

{ #category : #initialization }
Expand Down Expand Up @@ -388,6 +387,20 @@ CommandLineUIManager >> stdout [
^ Stdio stdout
]

{ #category : #'ui requests' }
CommandLineUIManager >> systemNotificationDefaultAction: aNotification [

Smalltalk logDuring: [:logger |
logger cr;
nextPutAll: (String new: 79 withAll: $= ); cr;
nextPutAll: 'System notification: ';
nextPutAll: aNotification messageText; cr;
nextPutAll: (String new: 79 withAll: $= ); cr].

aNotification resume.

]

{ #category : #'ui TEasilyThemed' }
CommandLineUIManager >> textEntry: aStringOrText [
"Open a text entry dialog."
Expand Down

0 comments on commit 69d8db1

Please sign in to comment.