summaryrefslogtreecommitdiffstats
path: root/client/screen.cpp
diff options
context:
space:
mode:
authorUri Lublin <uril@redhat.com>2011-12-22 11:19:14 +0200
committerUri Lublin <uril@redhat.com>2011-12-22 11:44:53 +0200
commit8b797180eef47af9997e7658a0d0e30baa42d2aa (patch)
treef7800dccaabbcb092cd39bb89472774528f6d7db /client/screen.cpp
parenta3a3b34a46f57ce86da444532e1db292638a74cd (diff)
downloadspice-8b797180eef47af9997e7658a0d0e30baa42d2aa.tar.gz
spice-8b797180eef47af9997e7658a0d0e30baa42d2aa.tar.xz
spice-8b797180eef47af9997e7658a0d0e30baa42d2aa.zip
client: screen: fix typo _forec_update_timer
sed -i 's/_forec_update_timer/_force_update_timer/' screen.cpp screen.h
Diffstat (limited to 'client/screen.cpp')
-rw-r--r--client/screen.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/screen.cpp b/client/screen.cpp
index a0dc0dfa..dc334559 100644
--- a/client/screen.cpp
+++ b/client/screen.cpp
@@ -88,7 +88,7 @@ RedScreen::RedScreen(Application& owner, int id, const std::string& name, int wi
, _update_by_timer (true)
, _size_locked (false)
, _menu_needs_update (false)
- , _forec_update_timer (0)
+ , _force_update_timer (0)
, _update_timer (new UpdateTimer(this))
, _composit_area (NULL)
, _update_mark (1)
@@ -402,7 +402,7 @@ void RedScreen::periodic_update()
if (is_dirty()) {
need_update = true;
} else {
- if (!_forec_update_timer) {
+ if (!_force_update_timer) {
_owner.deactivate_interval_timer(*_update_timer);
_periodic_update = false;
}
@@ -742,14 +742,14 @@ void RedScreen::on_stop_key_interception()
void RedScreen::enter_modal_loop()
{
- _forec_update_timer++;
+ _force_update_timer++;
activate_timer();
}
void RedScreen::exit_modal_loop()
{
- ASSERT(_forec_update_timer > 0)
- _forec_update_timer--;
+ ASSERT(_force_update_timer > 0)
+ _force_update_timer--;
}
void RedScreen::pre_migrate()