From 24588f6b80b108bc681de9ba473e02db4e0a69ff Mon Sep 17 00:00:00 2001 From: John Scipione Date: Mon, 14 Jul 2014 19:12:59 -0400 Subject: [PATCH] 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. --- headers/os/interface/Shape.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/os/interface/Shape.h b/headers/os/interface/Shape.h index dc55e7539a..c675ae8213 100644 --- a/headers/os/interface/Shape.h +++ b/headers/os/interface/Shape.h @@ -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);