-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed empty lines on method begin and dots behint last statement
- Loading branch information
Showing
97 changed files
with
152 additions
and
177 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCAnimatedStickerMessage.class/instance/text..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
text: aString | ||
|
||
text := aString | ||
text := aString. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCDocumentMessage.class/instance/documentId..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
documentId: aNumber | ||
|
||
documentId := aNumber | ||
documentId := aNumber. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCDocumentMessage.class/instance/filename..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
filename: aString | ||
|
||
filename := aString | ||
filename := aString. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCFileStore.class/instance/core..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
core: aCore | ||
|
||
core := aCore | ||
core := aCore. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCPhotoMessage.class/instance/caption..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
caption: aString | ||
|
||
caption := aString | ||
caption := aString. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCPhotoMessage.class/instance/fileId..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
fileId: aNumber | ||
|
||
fileId := aNumber | ||
fileId := aNumber. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCPhotoMessage.class/instance/height..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
height: aNumber | ||
|
||
height := aNumber | ||
height := aNumber. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCPhotoMessage.class/instance/width..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
width: aNumber | ||
|
||
width := aNumber | ||
width := aNumber. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/TelegramClient-Core.package/TCCPollMessage.class/instance/allowsMultipleAnswers..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
accessing | ||
allowsMultipleAnswers: aPollObject | ||
|
||
((aPollObject at: 'type') at: '@type') = 'pollTypeQuiz' ifTrue: [allowsMultipleAnswers := false] | ||
ifFalse: [allowsMultipleAnswers := ((aPollObject at: 'type') at: 'allow_multiple_answers')] | ||
((aPollObject at: 'type') at: '@type') = 'pollTypeQuiz' | ||
ifTrue: [allowsMultipleAnswers := false] | ||
ifFalse: [allowsMultipleAnswers := ((aPollObject at: 'type') at: 'allow_multiple_answers')]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ accessing | |
hasVoted | ||
|
||
options detect: [ :option | option isChosen ] ifNone: [ ^false ]. | ||
^ true. | ||
^ true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCStickerStore.class/instance/stickerSets..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
stickerSets: aDictionary | ||
|
||
stickerSets := aDictionary | ||
stickerSets := aDictionary. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCVideoMessage.class/instance/caption..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
caption: aString | ||
|
||
caption := aString | ||
caption := aString. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCVideoMessage.class/instance/height..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
height: aNumber | ||
|
||
height := aNumber | ||
height := aNumber. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCVideoMessage.class/instance/thumbnailId..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
thumbnailId: aNumber | ||
|
||
thumbnailId := aNumber | ||
thumbnailId := aNumber. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCVideoMessage.class/instance/videoId..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
videoId: aNumber | ||
|
||
videoId := aNumber | ||
videoId := aNumber. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-Core.package/TCCVideoMessage.class/instance/width..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
width: aNumber | ||
|
||
width := aNumber | ||
width := aNumber. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-UI.package/TCUChatButtonPage.class/instance/buttonMenu..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
buttonMenu: aRectangle | ||
|
||
buttonMenu := aRectangle | ||
buttonMenu := aRectangle. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-UI.package/TCUChatButtonPage.class/instance/chatWindow..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
chatWindow: aChatWindow | ||
|
||
chatWindow := aChatWindow | ||
chatWindow := aChatWindow. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
packages/TelegramClient-UI.package/TCUChatPollEditor.class/instance/addConfirmButton..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
drawing | ||
addConfirmButton: aRectangle | ||
|
||
|confirmButton| | ||
|
||
| confirmButton | | ||
confirmButton := TCUButton new. | ||
confirmButton text: 'Confirm'; | ||
on: #mouseUp send: #confirmPressed to: self. | ||
|
||
aRectangle addMorph: confirmButton. |
2 changes: 1 addition & 1 deletion
2
packages/TelegramClient-UI.package/TCUChatPollEditor.class/instance/addInputFieldFor..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
packages/TelegramClient-UI.package/TCUChatPollEditor.class/instance/addNextButton..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
drawing | ||
addNextButton: aRectangle | ||
|
||
|nextButton| | ||
|
||
| nextButton | | ||
nextButton := TCUButton new. | ||
nextButton text: 'Next'; | ||
on: #mouseUp send: #nextPressed to: self. | ||
|
||
aRectangle addMorph: nextButton. |
Oops, something went wrong.