| T O P I C    R E V I E W | 
              
                | eco | Posted - Dec 14 2005 : 09:58:19 AM when you use a notation like that (in c++):
 
 myType*   ptr = new myType();
 myType&	  ref = *penm;              // <- here
 
 if you type:
 ref.
 
 va convert it to
 ref->
 
 this is an error
 
 | 
              
                | 5   L A T E S T    R E P L I E S    (Newest First) | 
              
                | support | Posted - Mar 07 2006 : 6:35:12 PM case 832 is fixed in build 1442.
 | 
              
                | feline | Posted - Dec 15 2005 : 6:49:26 PM i have also been running into this
 
 case=832
 
 it is in the pile of things to fix, but i cannot say when it will be done.
 | 
              
                | eco | Posted - Dec 14 2005 : 12:52:59 PM ok but
 
  this is an error | 
              
                | support | Posted - Dec 14 2005 : 11:05:40 AM Press UNDO after the convert to revert back to dot.
 | 
              
                | eco | Posted - Dec 14 2005 : 09:59:45 AM I should have write that
 
 myType& ref = *ptr; // <- here
 |