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
8b1e1eb6
Commit
8b1e1eb6
authored
Mar 01, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/skins2/src/skin_main.cpp: default skin is skins2/default/theme.xml.
parent
657e2a26
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+4
-4
No files found.
modules/gui/skins2/src/skin_main.cpp
View file @
8b1e1eb6
...
...
@@ -2,7 +2,7 @@
* skin_main.cpp
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: skin_main.cpp,v 1.
9 2004/02/29 17:36:55 asmax
Exp $
* $Id: skin_main.cpp,v 1.
10 2004/03/01 19:58:16 gbazin
Exp $
*
* Authors: Cyril Deguet <asmax@via.ecp.fr>
* Olivier Teulire <ipkiss@via.ecp.fr>
...
...
@@ -168,13 +168,13 @@ static void Run( intf_thread_t *p_intf )
// Too bad, it failed. Let's try with the default theme
#ifdef WIN32_SKINS
string
default_dir
=
(
string
)
p_intf
->
p_libvlc
->
psz_vlcpath
+
"
\\
skins
\\
default
\\
theme.xml"
;
"
\\
skins
2
\\
default
\\
theme.xml"
;
if
(
!
pLoader
->
load
(
default_dir
)
)
#else
string
user_skin
=
(
string
)
p_intf
->
p_vlc
->
psz_homedir
+
"/"
+
CONFIG_DIR
+
"/skins/default/theme.xml"
;
"/"
+
CONFIG_DIR
+
"/skins
2
/default/theme.xml"
;
string
default_skin
=
(
string
)
DATA_PATH
+
"/skins/default/theme.xml"
;
string
default_skin
=
(
string
)
DATA_PATH
+
"/skins
2
/default/theme.xml"
;
if
(
!
pLoader
->
load
(
user_skin
)
&&
!
pLoader
->
load
(
default_skin
)
)
#endif
{
...
...
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