Changeset 2cde647ab66842989ccdc37f801bd912ce75d0ce
- Timestamp:
- 03/09/07 01:47:51
(1 year ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1188776871 +0000
- git-parent:
[8a0b8bd8d22cf77b80e370fb018b45946002e2fe]
- git-author:
- Rafaël Carré <funman@videolan.org> 1188776871 +0000
- Message:
Fix wxwidgets compilation
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9e595c9 |
r2cde647 |
|
| 194 | 194 | |
|---|
| 195 | 195 | /* Give our interface a nice little icon */ |
|---|
| 196 | | p_intf->p_sys->p_icon = new wxIcon( vlc_xpm ); |
|---|
| | 196 | p_intf->p_sys->p_icon = new wxIcon( (const char**) vlc_xpm ); |
|---|
| 197 | 197 | |
|---|
| 198 | 198 | /* Create the messages dialog so it can begin storing logs */ |
|---|
| r909d63d |
r2cde647 |
|
| 375 | 375 | |
|---|
| 376 | 376 | /* Give our interface a nice little icon */ |
|---|
| 377 | | SetIcon( wxIcon( vlc_xpm ) ); |
|---|
| | 377 | SetIcon( wxIcon( (const char**) vlc_xpm ) ); |
|---|
| 378 | 378 | |
|---|
| 379 | 379 | /* Create a splitter window that will fill in the interface window. |
|---|
| … | … | |
| 1469 | 1469 | p_intf = _p_intf; |
|---|
| 1470 | 1470 | |
|---|
| 1471 | | SetIcon( wxIcon( vlc16x16_xpm ), wxT("VLC media player") ); |
|---|
| | 1471 | SetIcon( wxIcon( (const char**) vlc16x16_xpm ), wxT("VLC media player") ); |
|---|
| 1472 | 1472 | if( !IsOk() || !IsIconInstalled() ) |
|---|
| 1473 | 1473 | { |
|---|
| … | … | |
| 1537 | 1537 | void Systray::UpdateTooltip( const wxChar* tooltip ) |
|---|
| 1538 | 1538 | { |
|---|
| 1539 | | SetIcon( wxIcon( vlc16x16_xpm ), tooltip ); |
|---|
| 1540 | | } |
|---|
| 1541 | | #endif |
|---|
| 1542 | | #endif |
|---|
| | 1539 | SetIcon( wxIcon( (const char**) vlc16x16_xpm ), tooltip ); |
|---|
| | 1540 | } |
|---|
| | 1541 | #endif |
|---|
| | 1542 | #endif |
|---|