diff options
author | Alon Levy <alevy@redhat.com> | 2010-07-09 02:43:36 +0300 |
---|---|---|
committer | Alon Levy <alevy@redhat.com> | 2010-07-19 10:28:06 +0300 |
commit | 4f8545ed628fbb89a893297c5fdf276511284b33 (patch) | |
tree | 1e4715f294dfa7b818c93dfc0524c272cdf1f012 /client/platform.h | |
parent | 9877e7ae8405965463a67171b7408871f949f66f (diff) | |
download | spice-4f8545ed628fbb89a893297c5fdf276511284b33.tar.gz spice-4f8545ed628fbb89a893297c5fdf276511284b33.tar.xz spice-4f8545ed628fbb89a893297c5fdf276511284b33.zip |
fix typo DisplayModeListner -> DisplayModeListener
Diffstat (limited to 'client/platform.h')
-rw-r--r-- | client/platform.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/platform.h b/client/platform.h index 58cd34b3..d2fdd484 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; }; |