| 3169 | #ifdef CONFIG_DEBUGGER |
| 3170 | |
| 3171 | void IObject::DebugWriteProperty(IDebugProperties *aDebugger, int aPage, int aPageSize, int aMaxDepth) |
| 3172 | { |
| 3173 | DebugCookie cookie; |
| 3174 | aDebugger->BeginProperty(NULL, "object", 0, cookie); |
| 3175 | //if (aPage == 0) |
| 3176 | //{ |
| 3177 | // // This is mostly a workaround for debugger clients which make it difficult to |
| 3178 | // // tell when a property contains an object with no child properties of its own: |
| 3179 | // aDebugger->WriteProperty("Note", _T("This object doesn't support debugging.")); |
| 3180 | //} |
| 3181 | aDebugger->EndProperty(cookie); |
| 3182 | } |
| 3183 | |
| 3184 | #endif |
nothing calls this directly
no test coverage detected