Changeset 384f1ef4ec0dcc66311bb374c9aba95ea4b693f4
- Timestamp:
- 01/08/06 17:11:33
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1154445093 +0000
- git-parent:
[d0733993c70484691029f5aa04539009e4b0149b]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1154445093 +0000
- Message:
Apparently, someone does not about "make".
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5d09f60 |
r384f1ef |
|
| 228 | 228 | new->psz_title = NULL; \ |
|---|
| 229 | 229 | new->psz_description = NULL; \ |
|---|
| 230 | | new->psz_defaultButton = NULL; \ |
|---|
| 231 | | new->psz_alternateButton = NULL; \ |
|---|
| 232 | | new->psz_otherButton = NULL; \ |
|---|
| | 230 | new->psz_default_button = NULL; \ |
|---|
| | 231 | new->psz_alternate_button = NULL; \ |
|---|
| | 232 | new->psz_other_button = NULL; \ |
|---|
| 233 | 233 | new->i_timeToGo = 0; \ |
|---|
| 234 | 234 | new->b_cancelled = VLC_FALSE; \ |
|---|
| … | … | |
| 324 | 324 | p_new->psz_description = strdup( psz_description ); |
|---|
| 325 | 325 | p_new->i_flags = DIALOG_YES_NO_CANCEL; |
|---|
| 326 | | p_new->psz_defaultButton = strdup( psz_default ); |
|---|
| 327 | | p_new->psz_alternateButton = strdup( psz_alternate ); |
|---|
| | 326 | p_new->psz_default_button = strdup( psz_default ); |
|---|
| | 327 | p_new->psz_alternate_button = strdup( psz_alternate ); |
|---|
| 328 | 328 | if( psz_other ) |
|---|
| 329 | | p_new->psz_otherButton = strdup( psz_other ); |
|---|
| | 329 | p_new->psz_other_button = strdup( psz_other ); |
|---|
| 330 | 330 | else |
|---|
| 331 | | p_new->psz_otherButton = NULL; |
|---|
| | 331 | p_new->psz_other_button = NULL; |
|---|
| 332 | 332 | |
|---|
| 333 | 333 | i_ret = intf_Interact( p_this, p_new ); |
|---|
| … | … | |
| 767 | 767 | FREE( p_dialog->psz_title ); |
|---|
| 768 | 768 | FREE( p_dialog->psz_description ); |
|---|
| 769 | | FREE( p_dialog->psz_defaultButton ); |
|---|
| 770 | | FREE( p_dialog->psz_alternateButton ); |
|---|
| 771 | | FREE( p_dialog->psz_otherButton ); |
|---|
| | 769 | FREE( p_dialog->psz_default_button ); |
|---|
| | 770 | FREE( p_dialog->psz_alternate_button ); |
|---|
| | 771 | FREE( p_dialog->psz_other_button ); |
|---|
| 772 | 772 | |
|---|
| 773 | 773 | free( p_dialog ); |
|---|