- Timestamp:
- May 31, 2010 10:18:52 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.kmk
r29868 r29929 1119 1119 $(RM) -f -- $@ [email protected] [email protected] [email protected] 1120 1120 $(APPEND) [email protected] '// autogenerated' 1121 @$(APPEND) [email protected] '#define IN_SLICKEDIT ' 1121 1122 @$(APPEND) [email protected] '#define RT_C_DECLS_BEGIN ' 1122 1123 @$(APPEND) [email protected] '#define RT_C_DECLS_END ' -
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.