Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Universal Logging Plugin
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LuFG VR VIS
VR-Group
Unreal-Development
Plugins
Universal Logging Plugin
Merge requests
!14
Fixing encoding in UTF8 scenarios where multiple chars encode for one
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Fixing encoding in UTF8 scenarios where multiple chars encode for one
fix/utf8_encoding
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Fixing encoding in UTF8 scenarios where multiple chars encode for one
Jan Delember
requested to merge
fix/utf8_encoding
into
develop
Oct 12, 2021
Overview
0
Commits
1
Pipelines
0
Changes
1
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
8c081364
1 commit,
Oct 12, 2021
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Source/UniversalLogging/Private/LogFileStream.cpp
+
2
−
1
View file @ 8c081364
Edit in single-file editor
Open in Web IDE
Show full file
@@ -49,5 +49,6 @@ void LogFileStream::Write(const FString Text)
{
if
(
!
bIs_Open
)
Open
();
File_Handle
->
Write
(
reinterpret_cast
<
const
uint8
*>
(
TCHAR_TO_UTF8
(
*
Text
)),
Text
.
Len
());
const
FTCHARToUTF8
StringUTF8
(
*
Text
);
File_Handle
->
Write
(
reinterpret_cast
<
const
uint8
*>
(
StringUTF8
.
Get
()),
StringUTF8
.
Length
());
}
Loading