[vlc-devel] commit: macosx: make [VLCControls getVoutView] publically available as it is used more than 15 times across the interface (VLCIntf, FSPanel, Vout, EmbeddedVout, ...) ( Felix Paul Kühne )
git version control
git at videolan.org
Sun Sep 21 16:28:19 CEST 2008
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Sep 21 16:31:36 2008 +0200| [d805d20d5378b9238a441044edf94100543042b4] | committer: Felix Paul Kühne
macosx: make [VLCControls getVoutView] publically available as it is used more than 15 times across the interface (VLCIntf, FSPanel, Vout, EmbeddedVout, ...)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d805d20d5378b9238a441044edf94100543042b4
---
modules/gui/macosx/controls.h | 2 ++
modules/gui/macosx/controls.m | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/modules/gui/macosx/controls.h b/modules/gui/macosx/controls.h
index 8934ee1..9161a2a 100644
--- a/modules/gui/macosx/controls.h
+++ b/modules/gui/macosx/controls.h
@@ -56,6 +56,8 @@
}
- (void)controlTintChanged;
+- (id)getVoutView;
+
- (IBAction)play:(id)sender;
- (IBAction)stop:(id)sender;
- (IBAction)faster:(id)sender;
diff --git a/modules/gui/macosx/controls.m b/modules/gui/macosx/controls.m
index 18f25ff..b6ccf0a 100644
--- a/modules/gui/macosx/controls.m
+++ b/modules/gui/macosx/controls.m
@@ -158,9 +158,9 @@
var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_PLAY_PAUSE );
}
-/* Small helper method (Private) */
+/* FIXME: I want to be Private */
-- (id)_voutView
+- (id)getVoutView
{
id window;
id voutView = nil;
More information about the vlc-devel
mailing list