switch from using Sleep/usleep to Glib::usleep() (and remember that we need to make Glib::usleep() actually work on windows one day)

This commit is contained in:
Paul Davis 2013-12-03 10:24:34 -05:00
parent 0258f2958b
commit 69df7763a1
8 changed files with 12 additions and 11 deletions

View file

@ -141,7 +141,7 @@ LXVSTPluginUI::get_XID ()
*/
while (!(_vst->state()->been_activated)) {
usleep (1000);
Glib::usleep (1000);
}
int const id = _vst->state()->xid;