[vlc-commits] macosx: Compilation fix on i686

Brendon Justin git at videolan.org
Sun Jan 15 20:54:07 CET 2012


vlc/vlc-1.2 | branch: master | Brendon Justin <brendonjustin at gmail.com> | Sun Jan 15 14:40:57 2012 -0500| [6d162e5d5c04c73e1a26689a065ccfaf5be097dd] | committer: Jean-Baptiste Kempf

macosx: Compilation fix on i686

Signed-off-by: Felix Paul Kühne <fkuehne at videolan.org>
(cherry picked from commit 2845a74216f7289e5eb1ddcc5b3bdd998c5a57fd)

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.2.git/?a=commit;h=6d162e5d5c04c73e1a26689a065ccfaf5be097dd
---

 modules/gui/macosx/VLCUIWidgets.h |   22 +++++++++++++++++-----
 1 files changed, 17 insertions(+), 5 deletions(-)

diff --git a/modules/gui/macosx/VLCUIWidgets.h b/modules/gui/macosx/VLCUIWidgets.h
index 456ab93..e000907 100644
--- a/modules/gui/macosx/VLCUIWidgets.h
+++ b/modules/gui/macosx/VLCUIWidgets.h
@@ -27,32 +27,44 @@
 
 @class VLCDialogGridView;
 
- at interface VLCDialogButton : NSButton
+ at interface VLCDialogButton : NSButton {
+    extension_widget_t *widget;
+}
 
 @property (readwrite) extension_widget_t *widget;
 @end
 
 
- at interface VLCDialogPopUpButton : NSPopUpButton
+ at interface VLCDialogPopUpButton : NSPopUpButton {
+    extension_widget_t *widget;
+}
 
 @property (readwrite) extension_widget_t *widget;
 @end
 
 
- at interface VLCDialogTextField : NSTextField
+ at interface VLCDialogTextField : NSTextField {
+    extension_widget_t *widget;
+}
 
 @property (readwrite) extension_widget_t *widget;
 @end
 
 
- at interface VLCDialogWindow : NSWindow
+ at interface VLCDialogWindow : NSWindow {
+    extension_widget_t *widget;
+    BOOL has_lock;
+}
 
 @property (readwrite) extension_dialog_t *dialog;
 @property (readwrite) BOOL has_lock;
 @end
 
 
- at interface VLCDialogList : NSTableView <NSTableViewDataSource>
+ at interface VLCDialogList : NSTableView <NSTableViewDataSource> {
+    extension_widget_t *widget;
+    NSMutableArray *contentArray;
+}
 
 @property (readwrite) extension_widget_t *widget;
 @property (readwrite, retain) NSMutableArray *contentArray;



More information about the vlc-commits mailing list