No real changes, just remove leading underscore from variables

Now that these variables are in a public header, don't use leading underscores
for them, if only for consistency with all the others.
This commit is contained in:
Vadim Zeitlin
2016-12-21 20:50:44 +01:00
parent 1c0ecec225
commit a326da369b
2 changed files with 13 additions and 13 deletions

View File

@@ -378,8 +378,8 @@ private:
@interface wxTextFieldCell : NSTextFieldCell
{
@private
int _wxAlignment;
BOOL _adjustRect;
int wxAlignment;
BOOL adjustRect;
}
-(void) setWXAlignment:(int)alignment;