Commit 4da234d7 authored by Boris Dorès's avatar Boris Dorès

no time to fix the playlist save&restore issue before the release (and

wouldn't be wise anyway), so deactivated it in the win32 interface.
parent 5ac16455
......@@ -428,7 +428,7 @@ void __fastcall TPlaylistDlg::MenuFileOpenClick(TObject *Sender)
{
if ( PlaylistOpenDlg->Execute() )
{
playlist_LoadFile ( p_playlist , PlaylistOpenDlg->FileName.c_str() );
// playlist_LoadFile ( p_playlist , PlaylistOpenDlg->FileName.c_str() );
UpdateGrid();
}
}
......@@ -438,7 +438,7 @@ void __fastcall TPlaylistDlg::MenuFileSaveClick(TObject *Sender)
{
if ( PlaylistSaveDlg->Execute() )
{
playlist_SaveFile ( p_playlist , PlaylistSaveDlg->FileName.c_str() );
// playlist_SaveFile ( p_playlist , PlaylistSaveDlg->FileName.c_str() );
}
}
//---------------------------------------------------------------------------
......
......@@ -59,24 +59,6 @@ object PlaylistDlg: TPlaylistDlg
object MainMenuPlaylist: TMainMenu
Left = 8
Top = 8
object MenuFile: TMenuItem
Caption = '&File'
object MenuFileOpen: TMenuItem
Caption = '&Open...'
OnClick = MenuFileOpenClick
end
object MenuFileSave: TMenuItem
Caption = '&Save...'
OnClick = MenuFileSaveClick
end
object N3: TMenuItem
Caption = '-'
end
object MenuFileClose: TMenuItem
Caption = '&Close'
OnClick = MenuFileCloseClick
end
end
object MenuAdd: TMenuItem
Tag = 3
Caption = '&Add'
......
......@@ -73,11 +73,6 @@ __published: // IDE-managed Components
TAction *DeleteSelectionAction;
TAction *DeleteAllAction;
TAction *PlayStreamAction;
TMenuItem *MenuFile;
TMenuItem *MenuFileOpen;
TMenuItem *MenuFileSave;
TMenuItem *N3;
TMenuItem *MenuFileClose;
TOpenDialog *PlaylistOpenDlg;
TSaveDialog *PlaylistSaveDlg;
void __fastcall FormShow( TObject *Sender );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment