Changeset 17880
- Timestamp:
- 07/11/05 09:24:46 (3 years ago)
- Files:
-
- trunk/juggler/modules/gadgeteer/ChangeLog (modified) (1 diff)
- trunk/juggler/modules/gadgeteer/VERSION (modified) (1 diff)
- trunk/juggler/modules/gadgeteer/gadget/Type/Proxy.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/juggler/modules/gadgeteer/ChangeLog
r17876 r17880 1 1 DATE AUTHOR CHANGE 2 2 ----------- ----------- ------------------------------------------------------- 3 Jul-10-2005 patrickh Updated to VPR 1.1.3. 3 Jul-11-2005 patrickh Removed the methods gadget::Proxy::isStupified() and 4 gadget::Proxy::stupify(), both of which are mis-spelled 5 and have been deprecated since 0.92.1. 6 NEW VERSION: 1.1.3 7 Jul-11-2005 patrickh Updated to VPR 1.1.3. 4 8 Jul-10-2005 patrickh Updated to VPR 1.1.2. 5 9 Jun-29-2005 patrickh Changed gadget::ProxyFactory to hold a vector of trunk/juggler/modules/gadgeteer/VERSION
r17796 r17880 1 1.1.3-0 @07/11/2005 14:30:00 UTC@ 1 2 1.1.2-0 @06/29/2005 21:15:00 UTC@ 2 3 1.1.1-0 @06/09/2005 23:55:00 UTC@ trunk/juggler/modules/gadgeteer/gadget/Type/Proxy.h
r16995 r17880 141 141 { 142 142 mStupefied = newState; 143 }144 145 /**146 * Is the proxy currently stupefied?147 * If the device we are proxying does not exist, then this will return148 * true.149 *150 * @deprecated The name of this method is spelled incorrectly, and it151 * will be removed in Gadgeteer 1.2. Use isStupefied()152 * instead.153 */154 virtual bool isStupified() const155 {156 return isStupefied();157 }158 159 /**160 * Sets the stupefication state of this proxy.161 *162 * @param newState The new state of stupefication.163 *164 * @deprecated The name of this method is spelled incorrectly, and it165 * will be removed in Gadgeteer 1.2. Use stupefy() instead.166 */167 void stupify(const bool newState = true)168 {169 stupefy(newState);170 143 } 171 144
