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
8328b699
Commit
8328b699
authored
Jun 02, 2010
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Skins: "file" shortcut for skins access_demux (& decode URI)"
This reverts commit
117c9423
.
parent
e83ac1de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
8 deletions
+1
-8
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+0
-1
modules/gui/skins2/src/theme_loader.cpp
modules/gui/skins2/src/theme_loader.cpp
+1
-7
No files found.
modules/gui/skins2/src/skin_main.cpp
View file @
8328b699
...
...
@@ -594,6 +594,5 @@ vlc_module_begin ()
set_capability
(
"access_demux"
,
5
)
set_callbacks
(
DemuxOpen
,
NULL
)
add_shortcut
(
"skins"
)
add_shortcut
(
"file"
)
vlc_module_end
()
modules/gui/skins2/src/theme_loader.cpp
View file @
8328b699
...
...
@@ -30,8 +30,6 @@
#include "../src/vlcproc.hpp"
#include "../src/window_manager.hpp"
#include <vlc_url.h>
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
...
...
@@ -73,12 +71,8 @@ int makedir( const char *newdir );
#define ZIP_BUFFER_SIZE 4096
bool
ThemeLoader
::
load
(
const
string
&
f
ullF
ileName
)
bool
ThemeLoader
::
load
(
const
string
&
fileName
)
{
char
*
decodedName
=
decode_URI_duplicate
(
fullFileName
.
c_str
()
);
string
fileName
=
decodedName
?
string
(
decodedName
)
:
fullFileName
;
free
(
decodedName
);
string
path
=
getFilePath
(
fileName
);
//Before all, let's see if the file is present
...
...
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