Minor code clean-up.
This commit is contained in:
parent
3e4f8f273d
commit
ca933d1b7e
Binary file not shown.
@ -29,8 +29,8 @@
|
||||
#define VER_LAMEXP_MINOR_HI 0
|
||||
#define VER_LAMEXP_MINOR_LO 4
|
||||
#define VER_LAMEXP_TYPE Beta
|
||||
#define VER_LAMEXP_PATCH 7
|
||||
#define VER_LAMEXP_BUILD 917
|
||||
#define VER_LAMEXP_PATCH 8
|
||||
#define VER_LAMEXP_BUILD 918
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Tool versions (minimum expected versions!)
|
||||
|
@ -119,13 +119,15 @@ void SplashScreen::showSplash(QThread *thread)
|
||||
timer->start(30720);
|
||||
|
||||
//Loop while thread is still running
|
||||
bool bIsRunning = THREAD_RUNNING(thread);
|
||||
while(bIsRunning)
|
||||
if(bool bIsRunning = THREAD_RUNNING(thread))
|
||||
{
|
||||
loop->exec();
|
||||
if(bIsRunning = THREAD_RUNNING(thread))
|
||||
while(bIsRunning)
|
||||
{
|
||||
qWarning("Potential deadlock in initialization thread!");
|
||||
loop->exec();
|
||||
if(bIsRunning = THREAD_RUNNING(thread))
|
||||
{
|
||||
qWarning("Potential deadlock in initialization thread!");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user