[vlc-commits] macosx: Fix wrong ivar declarations in VLCHUDTextFieldCell
Marvin Scholz
git at videolan.org
Mon Dec 5 14:13:00 CET 2016
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Mon Dec 5 14:11:29 2016 +0100| [35a9d3a7361c2fb1e25156f941e55c968e0e88f7] | committer: Marvin Scholz
macosx: Fix wrong ivar declarations in VLCHUDTextFieldCell
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=35a9d3a7361c2fb1e25156f941e55c968e0e88f7
---
modules/gui/macosx/VLCHUDTextFieldCell.m | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/modules/gui/macosx/VLCHUDTextFieldCell.m b/modules/gui/macosx/VLCHUDTextFieldCell.m
index 55ddef5..6b303a4 100644
--- a/modules/gui/macosx/VLCHUDTextFieldCell.m
+++ b/modules/gui/macosx/VLCHUDTextFieldCell.m
@@ -23,11 +23,15 @@
#import "VLCHUDTextFieldCell.h"
- at implementation VLCHUDTextFieldCell {
+ at interface VLCHUDTextFieldCell () {
BOOL myCustomDrawsBackground;
BOOL myCustomDrawsBorder;
}
+ at end
+
+ at implementation VLCHUDTextFieldCell
+
- (instancetype) initWithCoder:(NSCoder *)coder
{
self = [super initWithCoder:coder];
More information about the vlc-commits
mailing list