Changeset 44bf00f4936847565d65991c9374c7e2dd31c849
- Timestamp:
- 27/01/08 15:25:31
(10 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1201443931 +0000
- git-parent:
[8c083ee2debc53ef35dca25ac6247d8649091965]
- git-author:
- Rafaël Carré <funman@videolan.org> 1201443931 +0000
- Message:
cast to (char*) , remove unused code
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
r44bf00f |
|
| 39 | 39 | #undef OSD_MENU_DEBUG |
|---|
| 40 | 40 | |
|---|
| | 41 | #if 0 |
|---|
| 41 | 42 | static const char *ppsz_button_states[] = { "unselect", "select", "pressed" }; |
|---|
| | 43 | #endif |
|---|
| 42 | 44 | |
|---|
| 43 | 45 | /***************************************************************************** |
|---|
| … | … | |
| 91 | 93 | |
|---|
| 92 | 94 | if( psz_ext && !strcmp( psz_ext, ".cfg") ) |
|---|
| 93 | | psz_type = "import-osd"; |
|---|
| | 95 | psz_type = (char*)"import-osd"; |
|---|
| 94 | 96 | else |
|---|
| 95 | | psz_type = "import-osd-xml"; |
|---|
| | 97 | psz_type = (char*)"import-osd-xml"; |
|---|
| 96 | 98 | |
|---|
| 97 | 99 | p_menu->p_parser = module_Need( p_menu, "osd parser", |
|---|