mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
fix: too few arguments to webui_set_profile
When following the C++ hello world tutorial, the first example
immediately fails to compile due to an error in hte C++ header file.
```
In file included from main.cpp:1:
webui.hpp: In member function ‘void webui:🪟:set_proxy(std::string_view) const’:
webui.hpp:202:26: error: too few arguments to function ‘void webui_set_profile(size_t, const char*, const char*)’
202 | webui_set_profile(webui_window, proxy_server.data());
| ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from webui.hpp:21:
webui.h:422:19: note: declared here
422 | WEBUI_EXPORT void webui_set_profile(size_t window, const char* name, const char* path);
```
This commit is contained in:
parent
e73b3cfecd
commit
6d99a29e69
@ -199,7 +199,7 @@ class window {
|
||||
|
||||
// Set the web browser proxy to use. Need to be called before `webui_show()`.
|
||||
void set_proxy(const std::string_view proxy_server = {""}) const {
|
||||
webui_set_profile(webui_window, proxy_server.data());
|
||||
webui_set_proxy(webui_window, proxy_server.data());
|
||||
}
|
||||
|
||||
// Get the full current URL
|
||||
|
Loading…
x
Reference in New Issue
Block a user