From 0378f9266e5e910aefdd81d5330973222d6d7734 Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Sun, 23 Oct 2011 02:42:25 +0200 Subject: [PATCH] fix misspelling in library --- src/lib/time/control-impl.hpp | 2 +- src/lib/time/control.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/time/control-impl.hpp b/src/lib/time/control-impl.hpp index c950724d7..25e96dc07 100644 --- a/src/lib/time/control-impl.hpp +++ b/src/lib/time/control-impl.hpp @@ -151,7 +151,7 @@ namespace mutation { /** disconnect any observers */ void - disconnnect() + disconnect() { listeners_.clear(); } diff --git a/src/lib/time/control.hpp b/src/lib/time/control.hpp index 486097934..f7f78e4d1 100644 --- a/src/lib/time/control.hpp +++ b/src/lib/time/control.hpp @@ -151,7 +151,7 @@ namespace time { /** disconnect from observed entity and * cease any change notification */ - void disconnnect(); + void disconnect(); }; @@ -209,7 +209,7 @@ namespace time { template void - Control::disconnnect() + Control::disconnect() { notifyListeners_.disconnect(); this->unbind();