Skip to content

Use native WebKit on macOS #713

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

Draft
wants to merge 13 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
[PageClient] broken self references
  • Loading branch information
c-alpha committed Aug 23, 2021
commit 305263d07d06181c90031b737dd603c1a3a3c19f
4 changes: 2 additions & 2 deletions src/modes/thread_view/page_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ namespace Astroid {
eaddr);

/* listen */
self.srv->accept_async (sigc::mem_fun (this, &PageClient::extension_connect));
self.srv->accept_async (sigc::mem_fun (self, &PageClient::extension_connect));
umask (p);

/* send socket address (TODO: include key) */
Expand Down Expand Up @@ -142,7 +142,7 @@ namespace Astroid {
WebKitWebContext * context,
gpointer user_data) {

((PageClient *) user_data)->pImpl->init_web_extensions (((PageClient *) user_data), context);
((PageClient *) user_data)->pImpl->init_web_extensions ( * ((PageClient *) user_data), context);
}

PageClient::~PageClient () {
Expand Down