| 1581 | } |
| 1582 | |
| 1583 | void *SyncStickyNoteAfterResize(AnimationEntry *animEntry) |
| 1584 | { |
| 1585 | FileSystemActor * fsActor = (FileSystemActor *) animEntry->getObject(); |
| 1586 | if (fsActor->isFileSystemType(StickyNote)) |
| 1587 | { |
| 1588 | StickyNoteActor * actor = (StickyNoteActor *) fsActor; |
| 1589 | actor->syncStickyNoteWithFileContents(); |
| 1590 | } |
| 1591 | |
| 1592 | return NULL; |
| 1593 | } |
| 1594 | |
| 1595 | void DeletePile( Pile *p, bool deleteActors/*=false*/, bool fade/*=false*/, bool removeAnimation /*= true*/ ) |
| 1596 | { |
nothing calls this directly
no test coverage detected