Changeset 37ffc160897ecf93179454ae36316f7a41e8cc55
- Timestamp:
- 20/12/07 12:47:19
(1 year ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1198151239 +0000
- git-parent:
[6be497de2c4d15da78860caa5971dfbf49c57162]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1198151239 +0000
- Message:
Make wxwidgets compile again. The preference dialog still needs fixing.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7b55830 |
r37ffc16 |
|
| 513 | 513 | if( !strcmp( module_GetObjName(p_module), "main" ) ) |
|---|
| 514 | 514 | continue; |
|---|
| 515 | | |
|---|
| | 515 | #if 0 |
|---|
| 516 | 516 | /* Exclude empty plugins (submodules don't have config options, they |
|---|
| 517 | 517 | * are stored in the parent module) */ |
|---|
| 518 | 518 | if( module_IsSubModule(p_module) ) |
|---|
| 519 | 519 | continue; |
|---|
| 520 | | |
|---|
| | 520 | #endif |
|---|
| 521 | 521 | p_config = module_GetConfig( p_module, &i_confsize ); |
|---|
| 522 | 522 | for( size_t i = 0; i < i_confsize; i++ ) |
|---|
| … | … | |
| 581 | 581 | /* Add the plugin to the tree */ |
|---|
| 582 | 582 | ConfigTreeData *config_data = new ConfigTreeData; |
|---|
| | 583 | #if 0 |
|---|
| 583 | 584 | config_data->b_submodule = module_IsSubModule(p_module); |
|---|
| | 585 | #endif |
|---|
| 584 | 586 | config_data->i_type = TYPE_MODULE; |
|---|
| 585 | 587 | config_data->i_object_id = config_data->b_submodule ? |
|---|
| … | … | |
| 929 | 931 | * (submodules don't have config options, they are stored in the |
|---|
| 930 | 932 | * parent module) */ |
|---|
| | 933 | #if 0 |
|---|
| 931 | 934 | if( module_IsSubModule(p_module) ) |
|---|
| 932 | 935 | p_start = module_GetConfig((module_t *)(((vlc_object_t *)p_module)->p_parent), &i_confsize); |
|---|
| 933 | 936 | else |
|---|
| | 937 | #endif |
|---|
| 934 | 938 | p_start = module_GetConfig(p_module, &i_confsize); |
|---|
| 935 | 939 | |
|---|