more refactoring and tests profile tab

This commit is contained in:
arcan1s
2014-03-02 17:56:19 +04:00
parent d0a39b6770
commit 996d2d5bee
12 changed files with 63 additions and 42 deletions

View File

@ -21,15 +21,11 @@
#include <QThread>
// class for sleeping function
class SleepThread : public QThread
{
Q_OBJECT
// private run
void run()
{}
public :
public:
static void usleep(long iSleepTime)
{
QThread::usleep(iSleepTime);
@ -46,4 +42,5 @@ public :
}
};
#endif /* SLEEPTHREAD_H */