Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
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
YGOPRO-520DIY
ygopro
Commits
c68e81a3
Commit
c68e81a3
authored
Dec 11, 2024
by
salix5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CGUITTFont: call final virtual function in constructor
parent
1e1b0da8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
7 deletions
+1
-7
gframe/CGUITTFont.cpp
gframe/CGUITTFont.cpp
+0
-5
gframe/CGUITTFont.h
gframe/CGUITTFont.h
+1
-2
No files found.
gframe/CGUITTFont.cpp
View file @
c68e81a3
...
@@ -809,11 +809,6 @@ core::vector2di CGUITTFont::getKerning(const uchar32_t thisLetter, const uchar32
...
@@ -809,11 +809,6 @@ core::vector2di CGUITTFont::getKerning(const uchar32_t thisLetter, const uchar32
}
}
void
CGUITTFont
::
setInvisibleCharacters
(
const
wchar_t
*
s
)
{
void
CGUITTFont
::
setInvisibleCharacters
(
const
wchar_t
*
s
)
{
core
::
ustring
us
(
s
);
Invisible
=
us
;
}
void
CGUITTFont
::
setInvisibleCharacters
(
const
core
::
ustring
&
s
)
{
Invisible
=
s
;
Invisible
=
s
;
}
}
...
...
gframe/CGUITTFont.h
View file @
c68e81a3
...
@@ -295,8 +295,7 @@ public:
...
@@ -295,8 +295,7 @@ public:
s32
getKerningHeight
()
const
override
;
s32
getKerningHeight
()
const
override
;
//! Define which characters should not be drawn by the font.
//! Define which characters should not be drawn by the font.
void
setInvisibleCharacters
(
const
wchar_t
*
s
)
override
;
void
setInvisibleCharacters
(
const
wchar_t
*
s
)
final
;
void
setInvisibleCharacters
(
const
core
::
ustring
&
s
);
//! Get the last glyph page if there's still available slots.
//! Get the last glyph page if there's still available slots.
//! If not, it will return zero.
//! If not, it will return zero.
...
...
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