Symbol: fOldSelectionCount
src/apps/icon-o-matic/shape/commands/AddPointCommand.cpp
33
if (fOldSelectionCount > 0 && selected) {
src/apps/icon-o-matic/shape/commands/AddPointCommand.cpp
34
fOldSelection = new int32[fOldSelectionCount];
src/apps/icon-o-matic/shape/commands/AddPointCommand.cpp
35
memcpy(fOldSelection, selected, fOldSelectionCount * sizeof(int32));
src/apps/icon-o-matic/shape/commands/AddPointCommand.cpp
72
_Select(fOldSelection, fOldSelectionCount);
src/apps/icon-o-matic/shape/commands/AddPointCommand.h
38
int32 fOldSelectionCount;
src/apps/icon-o-matic/shape/commands/ChangePointCommand.cpp
106
_Select(fOldSelection, fOldSelectionCount);
src/apps/icon-o-matic/shape/commands/ChangePointCommand.cpp
38
if (fOldSelectionCount > 0 && selected) {
src/apps/icon-o-matic/shape/commands/ChangePointCommand.cpp
39
fOldSelection = new (nothrow) int32[fOldSelectionCount];
src/apps/icon-o-matic/shape/commands/ChangePointCommand.cpp
40
memcpy(fOldSelection, selected, fOldSelectionCount * sizeof(int32));
src/apps/icon-o-matic/shape/commands/ChangePointCommand.h
41
int32 fOldSelectionCount;
src/apps/icon-o-matic/shape/commands/InsertPointCommand.cpp
41
if (fOldSelectionCount > 0 && selected) {
src/apps/icon-o-matic/shape/commands/InsertPointCommand.cpp
90
_Select(fOldSelection, fOldSelectionCount);
src/apps/icon-o-matic/shape/commands/InsertPointCommand.h
40
int32 fOldSelectionCount;
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
155
_Select(fOldSelection, fOldSelectionCount);
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.cpp
203
fOldSelectionCount = selectionCount;
src/apps/icon-o-matic/shape/commands/RemovePointsCommand.h
53
int32 fOldSelectionCount;