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

@ -93,7 +93,7 @@ ExportRangeMarkersDialog::process_range_markers_export(Locations::LocationList&
if(gtk_events_pending()){
gtk_main_iteration();
}else {
usleep(10000);
Glib::usleep(10000);
}
}