summaryrefslogtreecommitdiffstats
path: root/client/display_channel.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/display_channel.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/display_channel.h')
-rw-r--r--client/display_channel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/display_channel.h b/client/display_channel.h
index 894c604f..59dc6a61 100644
--- a/client/display_channel.h
+++ b/client/display_channel.h
@@ -25,7 +25,7 @@
#include "cairo.h"
#include "cache.hpp"
#include "screen_layer.h"
-#include "events_loop.h"
+#include "process_loop.h"
#ifdef USE_OGL
#include "red_pixmap_gl.h"
#endif
@@ -36,7 +36,7 @@ class ChannelFactory;
class VideoStream;
class DisplayChannel;
-class StreamsTrigger: public EventsLoop::Trigger {
+class StreamsTrigger: public EventSources::Trigger {
public:
StreamsTrigger(DisplayChannel& channel);
@@ -47,7 +47,7 @@ private:
};
#ifdef USE_OGL
-class GLInterruptRecreate: public EventsLoop::Trigger {
+class GLInterruptRecreate: public EventSources::Trigger {
public:
GLInterruptRecreate(DisplayChannel& channel);
virtual void trigger();
@@ -60,7 +60,7 @@ private:
};
#endif
-class InterruptUpdate: public EventsLoop::Trigger {
+class InterruptUpdate: public EventSources::Trigger {
public:
InterruptUpdate(DisplayChannel& channel);