Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
479c5b38
Commit
479c5b38
authored
Nov 05, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* remove unused variables
parent
0e4d920e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
modules/gui/macosx/fspanel.h
modules/gui/macosx/fspanel.h
+0
-1
modules/gui/macosx/fspanel.m
modules/gui/macosx/fspanel.m
+0
-5
No files found.
modules/gui/macosx/fspanel.h
View file @
479c5b38
...
@@ -51,7 +51,6 @@
...
@@ -51,7 +51,6 @@
-
(
void
)
mouseExited
:(
NSEvent
*
)
theEvent
;
-
(
void
)
mouseExited
:(
NSEvent
*
)
theEvent
;
-
(
void
)
fadeIn
;
-
(
void
)
fadeIn
;
-
(
void
)
quickFadeIn
;
-
(
void
)
fadeOut
;
-
(
void
)
fadeOut
;
-
(
NSTimer
*
)
fadeTimer
;
-
(
NSTimer
*
)
fadeTimer
;
...
...
modules/gui/macosx/fspanel.m
View file @
479c5b38
...
@@ -296,7 +296,6 @@
...
@@ -296,7 +296,6 @@
id
view
=
[
super
initWithFrame
:
frameRect
];
id
view
=
[
super
initWithFrame
:
frameRect
];
fillColor
=
[[
NSColor
clearColor
]
retain
];
fillColor
=
[[
NSColor
clearColor
]
retain
];
NSRect
s_rc
=
[
self
frame
];
NSRect
s_rc
=
[
self
frame
];
NSImage
*
image
;
addButton
(
o_prev
,
@"fs_skip_previous"
,
@"fs_skip_previous_highlight"
,
174
,
15
,
prev
);
addButton
(
o_prev
,
@"fs_skip_previous"
,
@"fs_skip_previous_highlight"
,
174
,
15
,
prev
);
addButton
(
o_slow
,
@"fs_rewind"
,
@"fs_rewind_highlight"
,
211
,
14
,
slower
);
addButton
(
o_slow
,
@"fs_rewind"
,
@"fs_rewind_highlight"
,
211
,
14
,
slower
);
addButton
(
o_play
,
@"fs_play"
,
@"fs_play_highlight"
,
267
,
10
,
play
);
addButton
(
o_play
,
@"fs_play"
,
@"fs_play_highlight"
,
267
,
10
,
play
);
...
@@ -369,7 +368,6 @@
...
@@ -369,7 +368,6 @@
-
(
void
)
setPlay
-
(
void
)
setPlay
{
{
NSBundle
*
bundle
=
[
NSBundle
mainBundle
];
NSImage
*
image
;
NSImage
*
image
;
image
=
[
NSImage
imageNamed
:
@"fs_play"
];
image
=
[
NSImage
imageNamed
:
@"fs_play"
];
[
o_play
setImage
:
image
];
[
o_play
setImage
:
image
];
...
@@ -379,7 +377,6 @@
...
@@ -379,7 +377,6 @@
-
(
void
)
setPause
-
(
void
)
setPause
{
{
NSBundle
*
bundle
=
[
NSBundle
mainBundle
];
NSImage
*
image
;
NSImage
*
image
;
image
=
[
NSImage
imageNamed
:
@"fs_pause"
];
image
=
[
NSImage
imageNamed
:
@"fs_pause"
];
[
o_play
setImage
:
image
];
[
o_play
setImage
:
image
];
...
@@ -481,7 +478,6 @@
...
@@ -481,7 +478,6 @@
@implementation
VLCFSTimeSlider
@implementation
VLCFSTimeSlider
-
(
void
)
drawKnobInRect
:(
NSRect
)
knobRect
-
(
void
)
drawKnobInRect
:(
NSRect
)
knobRect
{
{
NSBundle
*
bundle
=
[
NSBundle
mainBundle
];
NSRect
image_rect
;
NSRect
image_rect
;
NSImage
*
img
=
[
NSImage
imageNamed
:
@"fs_time_slider_knob_highlight"
];
NSImage
*
img
=
[
NSImage
imageNamed
:
@"fs_time_slider_knob_highlight"
];
image_rect
.
size
=
[
img
size
];
image_rect
.
size
=
[
img
size
];
...
@@ -515,7 +511,6 @@
...
@@ -515,7 +511,6 @@
@implementation
VLCFSVolumeSlider
@implementation
VLCFSVolumeSlider
-
(
void
)
drawKnobInRect
:(
NSRect
)
knobRect
-
(
void
)
drawKnobInRect
:(
NSRect
)
knobRect
{
{
NSBundle
*
bundle
=
[
NSBundle
mainBundle
];
NSRect
image_rect
;
NSRect
image_rect
;
NSImage
*
img
=
[
NSImage
imageNamed
:
@"fs_volume_slider_knob"
];
NSImage
*
img
=
[
NSImage
imageNamed
:
@"fs_volume_slider_knob"
];
image_rect
.
size
=
[
img
size
];
image_rect
.
size
=
[
img
size
];
...
...
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