Skip to content

Commit

Permalink
OSX/iOS: Updated project after changes on other platforms.
Browse files Browse the repository at this point in the history
  • Loading branch information
ycastonguay committed Oct 3, 2013
1 parent 9e2a719 commit d225e0b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions MPfm/MPfm.MVP/MPfm.MVP.iOS.csproj
Expand Up @@ -326,5 +326,8 @@
<Compile Include="Presenters\AddPlaylistPresenter.cs" />
<Compile Include="Presenters\Interfaces\IAddMarkerPresenter.cs" />
<Compile Include="Presenters\Interfaces\IAddPlaylistPresenter.cs" />
<Compile Include="Views\ISelectFoldersView.cs" />
<Compile Include="Presenters\Interfaces\ISelectFoldersPresenter.cs" />
<Compile Include="Presenters\SelectFoldersPresenter.cs" />
</ItemGroup>
</Project>
5 changes: 3 additions & 2 deletions MPfm/MPfm.Mac/Windows/Controllers/MainWindowController.cs
Expand Up @@ -533,7 +533,7 @@ private void LoadImages()

partial void actionAddMarker(NSObject sender)
{
OnAddMarker(MarkerTemplateNameType.Verse);
OnAddMarkerWithTemplate(MarkerTemplateNameType.Verse);
}

partial void actionEditMarker(NSObject sender)
Expand Down Expand Up @@ -879,7 +879,8 @@ public void RefreshLoops(List<Loop> loops)

#region IMarkersView implementation

public Action<MarkerTemplateNameType> OnAddMarker { get; set; }
public Action OnAddMarker { get; set; }
public Action<MarkerTemplateNameType> OnAddMarkerWithTemplate { get; set; }
public Action<Marker> OnEditMarker { get; set; }
public Action<Marker> OnSelectMarker { get; set; }
public Action<Marker> OnDeleteMarker { get; set; }
Expand Down
Expand Up @@ -56,6 +56,7 @@ public override void WindowDidLoad()

public Action OnResetLibrary { get; set; }
public Action OnUpdateLibrary { get; set; }
public Action OnSelectFolders { get; set; }
public Action OnEnableSyncListener { get; set; }
public Action<int> OnSetSyncListenerPort { get; set; }

Expand Down
Expand Up @@ -64,6 +64,7 @@ public override void ViewWillAppear(bool animated)

public Action OnResetLibrary { get; set; }
public Action OnUpdateLibrary { get; set; }
public Action OnSelectFolders { get; set; }
public Action OnEnableSyncListener { get; set; }
public Action<int> OnSetSyncListenerPort { get; set; }

Expand Down

0 comments on commit d225e0b

Please sign in to comment.