Changeset 3869712ac488d65f17a38dfb3f5b0044f623b4dc
- Timestamp:
- 14/06/07 01:50:18
(1 year ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1181778618 +0000
- git-parent:
[dabe66a78da34ecd646ffa020315f84592fa32b0]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1181778618 +0000
- Message:
Qt4 - Minor cosmetic change.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0c5a114 |
r3869712 |
|
| 126 | 126 | char psz_duration[MSTRTIME_MAX_SIZE]; |
|---|
| 127 | 127 | assert( p_item->p_input->i_id == i_input_id ); |
|---|
| 128 | | strings[0] = QString::fromUtf8( p_item->p_input->psz_name ); |
|---|
| | 128 | strings[0] = qfu( p_item->p_input->psz_name ); |
|---|
| 129 | 129 | if( p_item->p_input->p_meta ) |
|---|
| 130 | 130 | { |
|---|
| 131 | | strings[1] = QString::fromUtf8( p_item->p_input->p_meta->psz_artist ); |
|---|
| | 131 | strings[1] = qfu( p_item->p_input->p_meta->psz_artist ); |
|---|
| 132 | 132 | } |
|---|
| 133 | 133 | secstotimestr( psz_duration, p_item->p_input->i_duration / 1000000 ); |
|---|