Changeset 4ca10a40fdfd35ad150d436f1b31affac078a2a2
- Timestamp:
- 04/20/08 17:35:53
(5 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1208705753 +0200
- git-parent:
[7511b55c22d803c46d0231953283cfe1d4434f76]
- git-author:
- Rafaël Carré <funman@videolan.org> 1208705753 +0200
- Message:
Check dialog return value
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r449fd28 |
r4ca10a4 |
|
| 1341 | 1341 | _("Please enter a name for the new node."), &psz_name ); |
|---|
| 1342 | 1342 | |
|---|
| 1343 | | if( psz_name != NULL && psz_name != "" ) |
|---|
| | 1343 | if( ret_v != DIALOG_CANCELLED && psz_name && *psz_name ) |
|---|
| 1344 | 1344 | p_item = playlist_NodeCreate( p_playlist, psz_name, |
|---|
| 1345 | 1345 | p_playlist->p_local_category, 0, NULL ); |
|---|