Changeset 29929 in vbox for trunk/include/VBox
- Timestamp:
- May 31, 2010 10:18:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/ptr.h
r28800 r29929 226 226 * pointer). 227 227 */ 228 #ifndef IN_SLICKEDIT 228 229 NoAddRefRelease<C>* operator->() const 229 230 { … … 231 232 return (NoAddRefRelease<C>*)p; 232 233 } 234 #else /* IN_SLICKEDIT - The editor doesn't quite grok the above magic, sorry about the mess. */ 235 C *operator->() const { return this->p; } 236 #endif 233 237 234 238 template <class I> … … 491 495 return *this; 492 496 } 497 498 #ifdef IN_SLICKEDIT /* Doesn't fully grok the stuff otherwise, sorry for the bloat. */ 499 C *operator->() const { return this->p; } 500 #endif 493 501 494 502 /**
Note:
See TracChangeset
for help on using the changeset viewer.