Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
aa52ddea
Commit
aa52ddea
authored
Dec 28, 2007
by
Pierre d'Herbemont
Browse files
MacOSX/Framework: Fix end of file line, at least on headers.
parent
c169ff14
Changes
6
Hide whitespace changes
Inline
Side-by-side
extras/MacOSX/Framework/Headers/Internal/VLCLibVLCBridging.h
View file @
aa52ddea
...
...
@@ -84,5 +84,3 @@
@interface
VLCAudio
(
VLCAudioBridging
)
-
(
id
)
initWithLibrary
:(
VLCLibrary
*
)
library
;
@end
extras/MacOSX/Framework/Headers/Internal/VLCLibrary.h
View file @
aa52ddea
...
...
@@ -51,4 +51,4 @@
*/
// TODO: Figure out a better way to raise error messages
#define quit_on_exception( ex ) __quit_on_exception( (void*)(ex), __FUNCTION__, __FILE__, __LINE__ )
extern
void
__quit_on_exception
(
void
*
e
,
const
char
*
function
,
const
char
*
file
,
int
line_number
);
\ No newline at end of file
extern
void
__quit_on_exception
(
void
*
e
,
const
char
*
function
,
const
char
*
file
,
int
line_number
);
extras/MacOSX/Framework/Headers/Public/VLCMediaList.h
View file @
aa52ddea
...
...
@@ -68,4 +68,4 @@ extern NSString * VLCMediaListItemDeleted;
/* Media list aspect */
-
(
VLCMediaListAspect
*
)
hierarchicalAspect
;
-
(
VLCMediaListAspect
*
)
flatAspect
;
@end
\ No newline at end of file
@end
extras/MacOSX/Framework/Sources/VLCMediaList.m
View file @
aa52ddea
...
...
@@ -325,4 +325,3 @@ static void HandleMediaListItemDeleted( const libvlc_event_t * event, void * use
[
delegate
mediaList
:
self
mediaRemovedAtIndex
:[
index
intValue
]];
}
@end
extras/MacOSX/Framework/Sources/VLCMediaListAspect.m
View file @
aa52ddea
...
...
@@ -239,4 +239,3 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
[
self
didChange
:
NSKeyValueChangeInsertion
valuesAtIndexes
:[
NSIndexSet
indexSetWithIndex
:[
index
intValue
]]
forKey
:
@"media"
];
}
@end
extras/MacOSX/Framework/Sources/VLCMediaPlayer.m
View file @
aa52ddea
...
...
@@ -530,4 +530,4 @@ static const VLCMediaPlayerState libvlc_to_local_state[] =
libvlc_event_detach
(
p_em
,
libvlc_MediaInstanceReachedEnd
,
HandleMediaInstanceStateChanged
,
self
,
NULL
);
libvlc_event_detach
(
p_em
,
libvlc_MediaInstancePositionChanged
,
HandleMediaTimeChanged
,
self
,
NULL
);
}
@end
\ No newline at end of file
@end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment