summaryrefslogtreecommitdiff
path: root/src/wx/wx_util.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-26 13:36:12 +0000
committerCarl Hetherington <cth@carlh.net>2014-03-26 13:36:12 +0000
commit5dc5a43bf61847cf863b29ef47d0046a9d4fdef0 (patch)
tree4313f2543c16ffbf660eea705851e2038ce3dd41 /src/wx/wx_util.cc
parent82f638e4170b0eb29227aefb70e0b9321addc7d3 (diff)
Start of Dolby certificate download.
Diffstat (limited to 'src/wx/wx_util.cc')
-rw-r--r--src/wx/wx_util.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wx/wx_util.cc b/src/wx/wx_util.cc
index 367d1edbb..96278b82b 100644
--- a/src/wx/wx_util.cc
+++ b/src/wx/wx_util.cc
@@ -296,3 +296,11 @@ wx_get (wxChoice* w)
{
return w->GetSelection ();
}
+
+void
+run_gui_loop ()
+{
+ while (wxTheApp->Pending ()) {
+ wxTheApp->Dispatch ();
+ }
+}