No changes, just remove unnecessary assignment in wxOSX code.

Local size variable was unnecessarily assigned itself.

Closes #13723.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-12-05 00:00:58 +00:00
parent ecb35373ee
commit bab2519980

View File

@@ -75,7 +75,7 @@ public :
void GetLayoutInset(int &left , int &top , int &right, int &bottom) const
{
left = top = right = bottom = 0;
NSControlSize size = size = [(wxNSProgressIndicator*)m_osxView controlSize];
NSControlSize size = [(wxNSProgressIndicator*)m_osxView controlSize];
switch( size )
{