diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-05-06 16:31:29 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-05-06 16:31:29 +0200 |
commit | a1f4e968563763435027a905be8349cda1974e00 (patch) | |
tree | e048f6c4bf7f41cdc87166ab1d00fead43adfb6d /plugingui | |
parent | b7b5b9ee2a9d6cefe9b83589122cedb89c22279c (diff) |
Get rid of platform dependent usleep/SleepEx.
Diffstat (limited to 'plugingui')
-rw-r--r-- | plugingui/testmain.cc | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/plugingui/testmain.cc b/plugingui/testmain.cc index d6c3220..5231205 100644 --- a/plugingui/testmain.cc +++ b/plugingui/testmain.cc @@ -24,13 +24,8 @@ * along with DrumGizmo; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include <platform.h> - -#if DG_PLATFORM == DG_PLATFORM_WINDOWS -#define WIN32_LEAN_AND_MEAN -#include <windows.h> -#endif -#include <unistd.h> +#include <chrono> +#include <thread> #include <hugin.hpp> #include <settings.h> @@ -63,11 +58,7 @@ int main() break; } -#if DG_PLATFORM == DG_PLATFORM_WINDOWS - SleepEx(50, FALSE); -#else - usleep(50000); -#endif + std::this_thread::sleep_for(std::chrono::milliseconds(50)); } return 0; |