Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
4257d965
Commit
4257d965
authored
Apr 18, 2009
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: fixed a few bugs found by clang's code analysis
parent
459e2252
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+1
-1
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-0
No files found.
modules/gui/macosx/controls.m
View file @
4257d965
...
@@ -1094,7 +1094,7 @@
...
@@ -1094,7 +1094,7 @@
}
}
/* Special case for telx menu */
/* Special case for telx menu */
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Normal Size"
)]
)
;
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Normal Size"
)]
)
{
{
NSMenuItem
*
item
=
[[
o_mi
menu
]
itemWithTitle
:
_NS
(
"Teletext"
)];
NSMenuItem
*
item
=
[[
o_mi
menu
]
itemWithTitle
:
_NS
(
"Teletext"
)];
bool
b_telx
=
p_input
&&
var_GetInteger
(
p_input
,
"teletext-es"
)
>=
0
;
bool
b_telx
=
p_input
&&
var_GetInteger
(
p_input
,
"teletext-es"
)
>=
0
;
...
...
modules/gui/macosx/intf.m
View file @
4257d965
...
@@ -760,7 +760,9 @@ static VLCMain *_o_sharedMainInstance = nil;
...
@@ -760,7 +760,9 @@ static VLCMain *_o_sharedMainInstance = nil;
/* remove global observer watching for vout device changes correctly */
/* remove global observer watching for vout device changes correctly */
[[
NSNotificationCenter
defaultCenter
]
removeObserver
:
self
];
[[
NSNotificationCenter
defaultCenter
]
removeObserver
:
self
];
#ifdef UPDATE_CHECK
[
o_update
end
];
[
o_update
end
];
#endif
/* release some other objects here, because it isn't sure whether dealloc
/* release some other objects here, because it isn't sure whether dealloc
* will be called later on */
* will be called later on */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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