Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fc-pregmod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pregmodfan
fc-pregmod
Commits
4eaccd0a
Commit
4eaccd0a
authored
1 year ago
by
svornost
Browse files
Options
Downloads
Patches
Plain Diff
Fixes for CEF 116
parent
3f504be1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!11476
Fixes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
FCHost/fchost/fchost_storage_js.cc
+1
-1
1 addition, 1 deletion
FCHost/fchost/fchost_storage_js.cc
FCHost/fchost/utility.cc
+1
-1
1 addition, 1 deletion
FCHost/fchost/utility.cc
with
2 additions
and
2 deletions
FCHost/fchost/fchost_storage_js.cc
+
1
−
1
View file @
4eaccd0a
...
...
@@ -52,7 +52,7 @@ bool FCHostStorageHandler::Execute(const CefString& name, CefRefPtr<CefV8Value>
if
(
name
==
"size"
)
{
// no arguments
retval
=
CefV8Value
::
CreateInt
(
static_cast
<
int32
>
(
storage
->
size
()));
retval
=
CefV8Value
::
CreateInt
(
static_cast
<
int32
_t
>
(
storage
->
size
()));
return
true
;
}
else
if
(
name
==
"keys"
)
{
...
...
This diff is collapsed.
Click to expand it.
FCHost/fchost/utility.cc
+
1
−
1
View file @
4eaccd0a
...
...
@@ -9,7 +9,7 @@ void cef_string_from_path(const std::filesystem::path& p, cef_string_t* str)
{
const
auto
&
pstr
=
p
.
native
();
#if defined(OS_WIN)
cef_string_from_
utf16
(
pstr
.
c_str
(),
pstr
.
size
(),
str
);
cef_string_from_
wide
(
pstr
.
c_str
(),
pstr
.
size
(),
str
);
#else
cef_string_from_utf8
(
pstr
.
c_str
(),
pstr
.
size
(),
str
);
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment