Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rename Webview to WebView #1080

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1467,7 +1467,7 @@ impl WebViewExtWindows for WebView {
target_os = "netbsd",
target_os = "openbsd",
))]
pub trait WebviewExtUnix: Sized {
pub trait WebViewExtUnix: Sized {
/// Create the webview from a GTK container widget, such as GTK window.
///
/// # Panics:
Expand All @@ -1488,7 +1488,7 @@ pub trait WebviewExtUnix: Sized {
target_os = "netbsd",
target_os = "openbsd",
))]
impl WebviewExtUnix for WebView {
impl WebViewExtUnix for WebView {
fn new_gtk<W>(widget: &W) -> Result<Self>
where
W: gtk::prelude::IsA<gtk::Container>,
Expand Down
Loading