Home
last modified time | relevance | path

Searched refs:fOldCount (Results 1 – 2 of 2) sorted by relevance

/haiku/src/apps/mediaplayer/playlist/
H A DImportPLItemsCommand.cpp34 fOldCount(0), in ImportPLItemsCommand()
77 fOldCount = fPlaylist->CountItems(); in ImportPLItemsCommand()
78 if (fOldCount > 0) { in ImportPLItemsCommand()
79 fOldItems = new (nothrow) PlaylistItem*[fOldCount]; in ImportPLItemsCommand()
84 memset(fOldItems, 0, fOldCount * sizeof(PlaylistItem*)); in ImportPLItemsCommand()
88 for (int32 i = 0; i < fOldCount; i++) { in ImportPLItemsCommand()
101 _CleanUp(fOldItems, fOldCount, fItemsAdded); in ~ImportPLItemsCommand()
158 for (int32 i = 0; i < fOldCount; i++) { in Undo()
H A DImportPLItemsCommand.h32 int32 fOldCount; variable