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
dab0c330
Commit
dab0c330
authored
Jul 24, 2005
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* shut up some compiler warnings
parent
54ee50f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
modules/gui/macosx/prefs_widgets.m
modules/gui/macosx/prefs_widgets.m
+7
-1
No files found.
modules/gui/macosx/prefs_widgets.m
View file @
dab0c330
...
...
@@ -981,6 +981,12 @@ if( MACOS_VERSION >= 10.3 ) \
{
return
[
o_label
frame
].
size
.
width
;
}
-
(
void
)
alignWithXPosition
:(
int
)
i_xPos
;
{
/* FIXME: not implemented atm, but created to shut up the warning
* about "method definition not found" -- FK @ 7/24/05 */
}
@end
@implementation
StringConfigControl
...
...
@@ -2119,7 +2125,7 @@ if( MACOS_VERSION >= 10.3 ) \
i_new_key
|=
([
o_shift_checkbox
state
]
==
NSOnState
)
?
KEY_MODIFIER_SHIFT
:
0
;
i_new_key
|=
StringToKey
([[[
o_popup
selectedItem
]
title
]
cString
]);
i_new_key
|=
StringToKey
(
(
char
*
)
[[[
o_popup
selectedItem
]
title
]
cString
]);
return
i_new_key
;
}
@end
...
...
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