From: Jean-Baptiste Kempf Date: Fri, 18 Jan 2008 06:41:03 +0000 (+0000) Subject: Qt4 - Preferences, fix the tooltip in the ModuleList. X-Git-Tag: 0.9.0-test0~3393 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6ff86dc483c3d3fabe7ab33278ad59a33f15a72a;p=vlc Qt4 - Preferences, fix the tooltip in the ModuleList. --- diff --git a/modules/gui/qt4/components/preferences_widgets.cpp b/modules/gui/qt4/components/preferences_widgets.cpp index d957344a91..0595ff559d 100644 --- a/modules/gui/qt4/components/preferences_widgets.cpp +++ b/modules/gui/qt4/components/preferences_widgets.cpp @@ -607,7 +607,7 @@ ModuleListConfigControl::~ModuleListConfigControl() checkBoxListItem *cbl = new checkBoxListItem; \ \ CONNECT( cb, stateChanged( int ), this, onUpdate( int ) );\ - cb->setToolTip( formatTooltip( qtr( module_GetLongName( p_parser ))));\ + cb->setToolTip( formatTooltip( qtr( module_GetHelp( p_parser ))));\ cbl->checkBox = cb; \ \ cbl->psz_module = strdup( module_GetObjName( p_parser ) ); \