Skip to content

Commit 4e17a21

Browse files
committed
refactoring of sections from PSPresentationTool
1 parent d84ed28 commit 4e17a21

70 files changed

Lines changed: 245 additions & 172 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
context menu
22
addSection
33

4-
self model openSectionNameChooserFor: self slide
4+
self model sectionController openSectionNameChooserFor: self slide
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
context menu
22
addSubSection
33

4-
self model openSubSectionNameChooserFor: self slide
4+
self model sectionController openSubSectionNameChooserFor: self slide
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
context menu
22
deleteSection
33

4-
self model deleteSectionStartingAt: self slide
4+
self model sectionController deleteSectionStartingAt: self slide
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
context menu
22
indentSection
33

4-
self model indentSectionStartingAt: self slide
4+
self model sectionController indentSectionStartingAt: self slide

packages/Presenter-Core.package/PSMiniature.class/instance/isSectionAnchor.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ testing
22
isSectionAnchor
33

44
^ self model notNil
5-
and: [self model isSectionAnchorSlide: self slide]
5+
and: [self model sectionController isSectionAnchorSlide: self slide]
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
context menu
22
moveOutOfSection
33

4-
self model presentation truncateSectionAt: self slide.
5-
self model miniatureController updateSlideMiniatures
4+
self model sectionController moveSlideOutOfSection: self slide
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
context menu
22
moveSectionDown
33

4-
self model
4+
self model sectionController
55
moveSectionAnchorStartingAt: self slide
6-
direction: 1
6+
direction: 1
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
context menu
22
moveSectionUp
33

4-
self model
4+
self model sectionController
55
moveSectionAnchorStartingAt: self slide
6-
direction: -1
6+
direction: -1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
context menu
22
outdentSection
33

4-
self model outdentSectionStartingAt: self slide
4+
self model sectionController outdentSectionStartingAt: self slide
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
context menu
22
renameSection
33

4-
self model openRenameSectionChooserFor: self slide
4+
self model sectionController openRenameSectionChooserFor: self slide

0 commit comments

Comments
 (0)