summaryrefslogtreecommitdiffstats
path: root/client/screen.h
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2009-10-20 11:18:56 +0200
committerYaniv Kamay <ykamay@redhat.com>2009-11-09 17:30:49 +0200
commit49f5e5973c5be6ba23f1dbe9c4ef5ab08017e962 (patch)
treeeee0f14f61e2c7209576570de63e1927461b516c /client/screen.h
parent8d5b738ba169c44d223ab6d99ec12e763ce5bc8e (diff)
downloadspice-49f5e5973c5be6ba23f1dbe9c4ef5ab08017e962.tar.gz
spice-49f5e5973c5be6ba23f1dbe9c4ef5ab08017e962.tar.xz
spice-49f5e5973c5be6ba23f1dbe9c4ef5ab08017e962.zip
spice client: Transfer all channels run loop from EventsLoop class to ProcessLoop class
Diffstat (limited to 'client/screen.h')
-rw-r--r--client/screen.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/screen.h b/client/screen.h
index 761ae244..3e2ffdb4 100644
--- a/client/screen.h
+++ b/client/screen.h
@@ -25,7 +25,7 @@
#include "red_window.h"
#include "platform.h"
-#include "events_loop.h"
+#include "process_loop.h"
#include "threads.h"
class Application;
@@ -78,7 +78,7 @@ public:
void untouch_context();
bool need_recreate_context_gl();
#endif
- void set_update_interrupt_trigger(EventsLoop::Trigger *trigger);
+ void set_update_interrupt_trigger(EventSources::Trigger *trigger);
bool update_by_interrupt();
void interrupt_update();
void set_type_gl();
@@ -174,7 +174,7 @@ private:
};
PointerLocation _pointer_location;
int _pixel_format_index;
- EventsLoop::Trigger *_update_interrupt_trigger;
+ EventSources::Trigger *_update_interrupt_trigger;
};
#endif