From 9c88e76752855116c42a17f35bfeb2d7cad76846 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 9 Jul 2015 14:32:20 +0200 Subject: [PATCH] Remove the never implemented wxPoint2D::SetPolarCoordinates(). This method was declared but never implemented, just remove it. Closes #17065. --- include/wx/geometry.h | 2 -- interface/wx/geometry.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/include/wx/geometry.h b/include/wx/geometry.h index 287d083451..0d9e4551ab 100644 --- a/include/wx/geometry.h +++ b/include/wx/geometry.h @@ -49,7 +49,6 @@ public : wxDouble GetVectorAngle() const; inline void SetVectorLength( wxDouble length ); void SetVectorAngle( wxDouble degrees ); - void SetPolarCoordinates( wxInt32 angle , wxInt32 length ); // set the vector length to 1.0, preserving the angle inline void Normalize(); @@ -302,7 +301,6 @@ public : wxDouble GetVectorAngle() const ; void SetVectorLength( wxDouble length ); void SetVectorAngle( wxDouble degrees ); - void SetPolarCoordinates( wxDouble angle , wxDouble length ); // set the vector length to 1.0, preserving the angle void Normalize(); diff --git a/interface/wx/geometry.h b/interface/wx/geometry.h index 4c1ba92c8f..51adabbb28 100644 --- a/interface/wx/geometry.h +++ b/interface/wx/geometry.h @@ -32,7 +32,6 @@ public : wxDouble GetVectorAngle() const; void SetVectorLength( wxDouble length ); void SetVectorAngle( wxDouble degrees ); - void SetPolarCoordinates( wxInt32 angle , wxInt32 length ); // set the vector length to 1.0, preserving the angle void Normalize(); @@ -92,7 +91,6 @@ public : wxDouble GetVectorAngle() const ; void SetVectorLength( wxDouble length ); void SetVectorAngle( wxDouble degrees ); - void SetPolarCoordinates( wxDouble angle , wxDouble length ); // set the vector length to 1.0, preserving the angle void Normalize();