Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
85e1d25b
Commit
85e1d25b
authored
May 05, 2004
by
ipkiss
Browse files
* skins2/parser/skin_parser.cpp: Make sure that IDs are unique
parent
7fecd439
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
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