Changeset ffe7bdd1604d611685865f2f67048fabd55f69c7

Show
Ignore:
Timestamp:
05/07/08 18:00:11 (3 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1215273611 +0200
git-parent:

[b0e17c5d959737a327277494cffecdfe0b8c0045]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1215273611 +0200
Message:

qt4: no need to use VLC_OBJECT() here. Plus use GetMainModule?().

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/qt4/components/complete_preferences.cpp

    ra6eb52a rffe7bdd  
    363363        return; 
    364364    else if( data->i_type == TYPE_MODULE ) 
    365         p_module = module_Find( VLC_OBJECT(p_intf), data->psz_name ); 
     365        p_module = module_Find( p_intf, data->psz_name ); 
    366366    else 
    367367    { 
    368         p_module = module_Find( VLC_OBJECT(p_intf), "main" ); 
     368        p_module = module_GetMainModule( p_intf ); 
    369369        assert( p_module ); 
    370370    }