Changeset c6eafbbbf3edd51c00f96598cf4513856a1a757e
- Timestamp:
- 11/09/07 00:44:37
(1 year ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1189464277 +0000
- git-parent:
[810ac704b260297f5e11d6a2e52a8d69a87f2f85]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1189464277 +0000
- Message:
Qt4 - DP: add INTF_DIALOG_DIRECTORY to the different cases.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2522a2c |
rc6eafbb |
|
| 96 | 96 | case INTF_DIALOG_CAPTURE: |
|---|
| 97 | 97 | openCaptureDialog(); break; |
|---|
| | 98 | case INTF_DIALOG_DIRECTORY: |
|---|
| | 99 | PLAppendDir(); break; |
|---|
| 98 | 100 | case INTF_DIALOG_PLAYLIST: |
|---|
| 99 | 101 | playlistDialog(); break; |
|---|
| … | … | |
| 122 | 124 | vlmDialog(); break; |
|---|
| 123 | 125 | case INTF_DIALOG_WIZARD: |
|---|
| | 126 | case INTF_DIALOG_STREAMWIZARD: |
|---|
| 124 | 127 | case INTF_DIALOG_UPDATEVLC: |
|---|
| 125 | 128 | case INTF_DIALOG_EXIT: |
|---|
| … | … | |
| 301 | 304 | * go to start or enqueue |
|---|
| 302 | 305 | **/ |
|---|
| 303 | | static void openDirectory( intf_thread_t* p_intf, bool pl, bool go ) |
|---|
| | 306 | static void openDirectory( intf_thread_t *p_intf, bool pl, bool go ) |
|---|
| 304 | 307 | { |
|---|
| 305 | 308 | QString dir = QFileDialog::getExistingDirectory ( 0, qtr("Open directory") ); |
|---|