Changeset 17880

Show
Ignore:
Timestamp:
07/11/05 09:24:46 (3 years ago)
Author:
patrickh
Message:

Removed the deprecated (and mis-spelled) methods gadget::Proxy::stupify()
and gadget::Proxy::isStupified(). These were superceded by the correctly
spelled versions in 0.92.1. Bumped version to 1.1.3.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/juggler/modules/gadgeteer/ChangeLog

    r17876 r17880  
    11DATE        AUTHOR      CHANGE 
    22----------- ----------- ------------------------------------------------------- 
    3 Jul-10-2005 patrickh    Updated to VPR 1.1.3. 
     3Jul-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 
     7Jul-11-2005 patrickh    Updated to VPR 1.1.3. 
    48Jul-10-2005 patrickh    Updated to VPR 1.1.2. 
    59Jun-29-2005 patrickh    Changed gadget::ProxyFactory to hold a vector of 
  • trunk/juggler/modules/gadgeteer/VERSION

    r17796 r17880  
     11.1.3-0 @07/11/2005 14:30:00 UTC@ 
    121.1.2-0 @06/29/2005 21:15:00 UTC@ 
    231.1.1-0 @06/09/2005 23:55:00 UTC@ 
  • trunk/juggler/modules/gadgeteer/gadget/Type/Proxy.h

    r16995 r17880  
    141141      { 
    142142         mStupefied = newState; 
    143       } 
    144  
    145       /** 
    146        * Is the proxy currently stupefied? 
    147        * If the device we are proxying does not exist, then this will return 
    148        * true. 
    149        * 
    150        * @deprecated The name of this method is spelled incorrectly, and it 
    151        *             will be removed in Gadgeteer 1.2.  Use isStupefied() 
    152        *             instead. 
    153        */ 
    154       virtual bool isStupified() const 
    155       { 
    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 it 
    165        *             will be removed in Gadgeteer 1.2.  Use stupefy() instead. 
    166        */ 
    167       void stupify(const bool newState = true) 
    168       { 
    169          stupefy(newState); 
    170143      } 
    171144