From 3fb0c5f4f00f86519c93413ab2386c47c5224345 Mon Sep 17 00:00:00 2001 From: jean-pierre roux Date: Wed, 20 Feb 2008 16:05:38 +0000 Subject: [PATCH] Fix typo --- kernel/src/bbtkAny.h | 24 ++++++++++++------------ kernel/src/bbtkAtomicBlackBox.h | 6 +++--- kernel/src/bbtkBlackBox.cxx | 14 +++++++------- kernel/src/bbtkBlackBox.h | 10 +++++----- kernel/src/bbtkConnection.h | 24 ++++++------------------ 5 files changed, 33 insertions(+), 45 deletions(-) diff --git a/kernel/src/bbtkAny.h b/kernel/src/bbtkAny.h index 45ed576..d5ae85f 100644 --- a/kernel/src/bbtkAny.h +++ b/kernel/src/bbtkAny.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkAny.h,v $ Language: C++ - Date: $Date: 2008/01/22 15:02:00 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/02/20 16:05:38 $ + Version: $Revision: 1.2 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See doc/license.txt or @@ -113,18 +113,18 @@ namespace bbtk class anyholder : public anyplaceholder { public: // structors - + anyholder(ValueType* const & value) : held(value) { } - + public: // queries - + virtual const std::type_info & type() const { return typeid(ValueType*); } - + virtual bool is_pointer() const { return true; } virtual const std::type_info & pointed_type() const { return typeid(ValueType); } virtual void* get_pointer() const { @@ -136,11 +136,11 @@ namespace bbtk } virtual anyplaceholder * clone() const { return new anyholder(held); } - + public: // representation - + ValueType* held; - + }; //========================================================= @@ -174,13 +174,13 @@ namespace bbtk public: typedef any< TypeTraits > self; // structors - + /// Default constructor any() : content(0) { } - + /// Constructor with a value of template type template any(const ValueType & value) @@ -223,7 +223,7 @@ namespace bbtk { delete content; } - + /// Swaps the content of this with another any any & swap(any & rhs) diff --git a/kernel/src/bbtkAtomicBlackBox.h b/kernel/src/bbtkAtomicBlackBox.h index a0102bb..4422063 100644 --- a/kernel/src/bbtkAtomicBlackBox.h +++ b/kernel/src/bbtkAtomicBlackBox.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkAtomicBlackBox.h,v $ Language: C++ - Date: $Date: 2008/02/07 11:06:37 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/02/20 16:05:38 $ + Version: $Revision: 1.2 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -82,7 +82,7 @@ namespace bbtk /// /// First checks that re-processing is needed (either Status==MODIFIED or InputProcessMode==Always) /// then : - /// - updates its inputs by calling bbUpdateInputs (which recursively calls bbBackwardUpdate on amont boxes) + /// - updates its inputs by calling bbUpdateInputs (which recursively calls bbBackwardUpdate on upstream boxes) /// - calls bbProcess which here simply calls the user callback bbUserProcess which does the actual processing. /// bbProcess is overloaded in WxBlackBox to handle widget creation and show IOStatus bbBackwardUpdate(Connection* caller); diff --git a/kernel/src/bbtkBlackBox.cxx b/kernel/src/bbtkBlackBox.cxx index 1c980b7..7955ccf 100644 --- a/kernel/src/bbtkBlackBox.cxx +++ b/kernel/src/bbtkBlackBox.cxx @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkBlackBox.cxx,v $ Language: C++ -Date: $Date: 2008/02/18 10:41:02 $ -Version: $Revision: 1.4 $ +Date: $Date: 2008/02/20 16:05:38 $ +Version: $Revision: 1.5 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See doc/license.txt or @@ -465,10 +465,10 @@ namespace bbtk } if (reaction) bbGlobalProcessExecutionList(); - bbtkDebugMessageDec("Process",5, - "<= BlackBox::bbSignalOutputModification(" - <