BShape: Rename these params back in header.

Accidentally renamed these in the header, rename them back to
match the cpp file. These param names might not be very good but
they match the struct variable names. They are private methods
anyway. No functional change intended in either commit.
This commit is contained in:
John Scipione 2014-07-14 19:12:59 -04:00
parent cb65c3a037
commit 24588f6b80

View File

@ -97,10 +97,10 @@ private:
friend class BPrivate::ServerLink;
void GetData(int32* opCount, int32* ptCount,
uint32** opList, BPoint** pointsList);
uint32** opList, BPoint** ptList);
void SetData(int32 opCount, int32 ptCount,
const uint32* opList,
const BPoint* pointsList);
const BPoint* ptList);
void InitData();
bool AllocatePts(int32 count);
bool AllocateOps(int32 count);