1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-18 16:41:14 +02:00

Replace tabs by spaces.

This commit is contained in:
benjamin.drung@gmail.com
2013-11-07 23:23:32 +00:00
parent f61fc94040
commit 1686b38f3c

View File

@@ -16,19 +16,19 @@ typedef void (*tGenericFn)(void);
//#include "AllCommands.h" // for tGenericFn //#include "AllCommands.h" // for tGenericFn
//#include "WidgetExtra.h" //#include "WidgetExtra.h"
class /*WIDGET_EXTRA_DLL*/ NonGuiThread : public wxThread class /*WIDGET_EXTRA_DLL*/ NonGuiThread : public wxThread
{ {
public: public:
NonGuiThread(tGenericFn pFn); NonGuiThread(tGenericFn pFn);
virtual ~NonGuiThread(); virtual ~NonGuiThread();
NonGuiThread::ExitCode Entry(); NonGuiThread::ExitCode Entry();
static void RunInThread(tGenericFn pFn); static void RunInThread(tGenericFn pFn);
static NonGuiThread * StartChild( tGenericFn pFn ); static NonGuiThread * StartChild( tGenericFn pFn );
public: public:
bool mbExit; bool mbExit;
tGenericFn mpFn; tGenericFn mpFn;
static bool IsLive; static bool IsLive;
}; };
#endif // !defined(AFX_NONGUITHREAD_H__E8F7FC2B_CB13_497B_A556_18551596AFD9__INCLUDED_) #endif // !defined(AFX_NONGUITHREAD_H__E8F7FC2B_CB13_497B_A556_18551596AFD9__INCLUDED_)