Rename wxTextFieldCell members once again

Use underscores on them to show that they are different from properties or
local variables (in pure Objective C they would actually start with
underscores, but this is not a good idea in C++ code) and avoid conflict
between a member name and "wxAlignment" type name, which was confusing.
This commit is contained in:
Vadim Zeitlin
2017-07-11 22:35:22 +02:00
parent a326da369b
commit 467c48841f
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 alignment_;
BOOL adjustRect_;
}
-(void) setWXAlignment:(int)alignment;