Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
ce97a5d9
Commit
ce97a5d9
authored
Mar 01, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* removed unused, useless variable
parent
dacaa81b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
15 deletions
+3
-15
modules/gui/macosx/update.h
modules/gui/macosx/update.h
+0
-1
modules/gui/macosx/update.m
modules/gui/macosx/update.m
+3
-14
No files found.
modules/gui/macosx/update.h
View file @
ce97a5d9
...
...
@@ -37,7 +37,6 @@
NSString
*
o_hashOfOurBinary
;
NSString
*
o_urlOfBinary
;
NSNumber
*
o_indexOfOurBinary
;
update_t
*
p_u
;
intf_thread_t
*
p_intf
;
}
...
...
modules/gui/macosx/update.m
View file @
ce97a5d9
...
...
@@ -76,8 +76,6 @@ static VLCUpdate *_o_sharedInstance = nil;
[
o_hashOfOurBinary
release
];
if
(
o_urlOfBinary
)
[
o_urlOfBinary
release
];
if
(
o_indexOfOurBinary
)
[
o_indexOfOurBinary
release
];
[
super
dealloc
];
}
...
...
@@ -175,10 +173,9 @@ static VLCUpdate *_o_sharedInstance = nil;
else
if
(
p_uit
->
file
.
i_type
==
UPDATE_FILE_TYPE_BINARY
)
{
msg_Dbg
(
p_intf
,
"binary found, version = %s"
\
", hash=%s, size=%i MB, position in release file list=%i"
,
\
p_uit
->
release
.
psz_version
,
p_uit
->
file
.
psz_md5
,
\
(
int
)((
p_uit
->
file
.
l_size
/
1024
)
/
1024
),
\
p_uit
->
i_f
);
", hash=%s, size=%i MB"
,
p_uit
->
release
.
psz_version
,
\
p_uit
->
file
.
psz_md5
,
\
(
int
)((
p_uit
->
file
.
l_size
/
1024
)
/
1024
)
);
[
o_fld_currentVersionAndSize
setStringValue
:
\
[
NSString
stringWithFormat
:
\
@"The current release is %s (%i MB to download)."
,
\
...
...
@@ -198,14 +195,6 @@ static VLCUpdate *_o_sharedInstance = nil;
o_hashOfOurBinary
=
[[
NSString
alloc
]
\
initWithUTF8String
:
p_uit
->
file
.
psz_md5
];
}
if
(
p_uit
->
i_f
)
{
if
(
o_indexOfOurBinary
)
[
o_indexOfOurBinary
release
];
o_indexOfOurBinary
=
[[
NSNumber
alloc
]
\
initWithInt
:
p_uit
->
i_f
];
}
}
if
(
p_uit
->
release
.
i_status
==
UPDATE_RELEASE_STATUS_NEWER
&&
!
releaseChecked
)
...
...
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