summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-07-09 02:43:36 +0300
committerAlon Levy <alevy@redhat.com>2010-07-19 10:28:06 +0300
commit4f8545ed628fbb89a893297c5fdf276511284b33 (patch)
tree1e4715f294dfa7b818c93dfc0524c272cdf1f012
parent9877e7ae8405965463a67171b7408871f949f66f (diff)
fix typo DisplayModeListner -> DisplayModeListener
-rw-r--r--client/application.h2
-rw-r--r--client/platform.h8
-rw-r--r--client/windows/platform.cpp2
-rw-r--r--client/x11/platform.cpp8
4 files changed, 10 insertions, 10 deletions
diff --git a/client/application.h b/client/application.h
index 74efed4..36ae86e 100644
--- a/client/application.h
+++ b/client/application.h
@@ -140,7 +140,7 @@ typedef std::list<GUIBarrier*> GUIBarriers;
class Application : public ProcessLoop,
public Platform::EventListener,
- public Platform::DisplayModeListner,
+ public Platform::DisplayModeListener,
public CommandTarget {
public:
diff --git a/client/platform.h b/client/platform.h
index 58cd34b..d2fdd48 100644
--- a/client/platform.h
+++ b/client/platform.h
@@ -115,8 +115,8 @@ public:
class EventListener;
static void set_event_listener(EventListener* listener);
- class DisplayModeListner;
- static void set_display_mode_listner(DisplayModeListner* listener);
+ class DisplayModeListener;
+ static void set_display_mode_listner(DisplayModeListener* listener);
};
class Platform::EventListener {
@@ -137,9 +137,9 @@ public:
virtual void push_frame(uint8_t *frame) = 0;
};
-class Platform::DisplayModeListner {
+class Platform::DisplayModeListener {
public:
- virtual ~DisplayModeListner() {}
+ virtual ~DisplayModeListener() {}
virtual void on_display_mode_change() = 0;
};
diff --git a/client/windows/platform.cpp b/client/windows/platform.cpp
index 1e05fe1..81eb787 100644
--- a/client/windows/platform.cpp
+++ b/client/windows/platform.cpp
@@ -698,7 +698,7 @@ LocalCursor* Platform::create_default_cursor()
return new WinDefaultCursor();
}
-void Platform::set_display_mode_listner(DisplayModeListner* listener)
+void Platform::set_display_mode_listner(DisplayModeListener* listener)
{
}
diff --git a/client/x11/platform.cpp b/client/x11/platform.cpp
index 8fe1f72..af5a65e 100644
--- a/client/x11/platform.cpp
+++ b/client/x11/platform.cpp
@@ -105,13 +105,13 @@ public:
static DefaultEventListener default_event_listener;
static Platform::EventListener* event_listener = &default_event_listener;
-class DefaultDisplayModeListner: public Platform::DisplayModeListner {
+class DefaultDisplayModeListener: public Platform::DisplayModeListener {
public:
void on_display_mode_change() {}
};
-static DefaultDisplayModeListner default_display_mode_listener;
-static Platform::DisplayModeListner* display_mode_listener = &default_display_mode_listener;
+static DefaultDisplayModeListener default_display_mode_listener;
+static Platform::DisplayModeListener* display_mode_listener = &default_display_mode_listener;
NamedPipe::ListenerRef NamedPipe::create(const char *name, ListenerInterface& listener_interface)
@@ -449,7 +449,7 @@ void Platform::set_event_listener(EventListener* listener)
event_listener = listener ? listener : &default_event_listener;
}
-void Platform::set_display_mode_listner(DisplayModeListner* listener)
+void Platform::set_display_mode_listner(DisplayModeListener* listener)
{
display_mode_listener = listener ? listener : &default_display_mode_listener;
}