Commit 1efae7b4 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 WIn32: play use the simple open, as advised by xtophe.

parent 48b680eb
...@@ -845,7 +845,11 @@ void ControlsWidget::play() ...@@ -845,7 +845,11 @@ void ControlsWidget::play()
if( THEPL->current.i_size == 0 ) if( THEPL->current.i_size == 0 )
{ {
/* The playlist is empty, open a file requester */ /* The playlist is empty, open a file requester */
#ifndef WIN32
THEDP->openFileDialog(); THEDP->openFileDialog();
#else
THEDP->simpleOpenDialog();
#endif
setStatus( 0 ); setStatus( 0 );
return; return;
} }
......
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