Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
85e1d25b
Commit
85e1d25b
authored
May 05, 2004
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* skins2/parser/skin_parser.cpp: Make sure that IDs are unique
parent
7fecd439
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/gui/skins2/parser/skin_parser.cpp
modules/gui/skins2/parser/skin_parser.cpp
+3
-3
No files found.
modules/gui/skins2/parser/skin_parser.cpp
View file @
85e1d25b
...
...
@@ -104,7 +104,7 @@ void SkinParser::handleBeginElement( const string &rName, AttrList_t &attr )
else
if
(
rName
==
"Bitmap"
)
{
const
BuilderData
::
Bitmap
bitmap
(
attr
[
"id"
]
,
const
BuilderData
::
Bitmap
bitmap
(
uniqueId
(
attr
[
"id"
]
)
,
convertFileName
(
attr
[
"file"
]
),
convertColor
(
attr
[
"alphacolor"
]
)
);
m_data
.
m_listBitmap
.
push_back
(
bitmap
);
...
...
@@ -112,7 +112,7 @@ void SkinParser::handleBeginElement( const string &rName, AttrList_t &attr )
else
if
(
rName
==
"BitmapFont"
)
{
const
BuilderData
::
BitmapFont
font
(
attr
[
"id"
]
,
const
BuilderData
::
BitmapFont
font
(
uniqueId
(
attr
[
"id"
]
)
,
convertFileName
(
attr
[
"file"
]
),
attr
[
"type"
]
);
m_data
.
m_listBitmapFont
.
push_back
(
font
);
...
...
@@ -144,7 +144,7 @@ void SkinParser::handleBeginElement( const string &rName, AttrList_t &attr )
else
if
(
rName
==
"Font"
)
{
const
BuilderData
::
Font
fontData
(
attr
[
"id"
]
,
const
BuilderData
::
Font
fontData
(
uniqueId
(
attr
[
"id"
]
)
,
convertFileName
(
attr
[
"file"
]
),
atoi
(
attr
[
"size"
]
)
);
m_data
.
m_listFont
.
push_back
(
fontData
);
...
...
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