Commit 4dfaa7dc authored by Olivier Teulière's avatar Olivier Teulière

* skins2/src/dialogs.cpp: When no dialogs provider is found, the error message

   now indicates the most likely causes of the problem.
parent 8fe00082
...@@ -175,7 +175,7 @@ bool Dialogs::init() ...@@ -175,7 +175,7 @@ bool Dialogs::init()
m_pModule = module_Need( m_pProvider, "dialogs provider", NULL, 0 ); m_pModule = module_Need( m_pProvider, "dialogs provider", NULL, 0 );
if( m_pModule == NULL ) if( m_pModule == NULL )
{ {
msg_Err( getIntf(), "No suitable dialogs provider found" ); msg_Err( getIntf(), "No suitable dialogs provider found (hint: compile the wxWidgets plugin, and make sure it is loaded properly)" );
vlc_object_destroy( m_pProvider ); vlc_object_destroy( m_pProvider );
m_pProvider = NULL; m_pProvider = NULL;
return false; return false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment