1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

Ladybird: Remove some awkward camelCase signal names

We use snake_case for everything except when we're forced by Qt to use
their camelCase names.
This commit is contained in:
Andreas Kling 2022-09-12 09:04:51 +02:00 committed by Andrew Kaster
parent 0c4ae810d7
commit 031005de2d
3 changed files with 9 additions and 9 deletions

View file

@ -59,16 +59,16 @@ Tab::Tab(QMainWindow* window)
m_toolbar->addAction(m_home_action);
m_toolbar->addWidget(m_location_edit);
QObject::connect(m_view, &WebView::linkHovered, [this](QString const& title) {
QObject::connect(m_view, &WebView::link_hovered, [this](QString const& title) {
m_hover_label->setText(title);
update_hover_label();
m_hover_label->show();
});
QObject::connect(m_view, &WebView::linkUnhovered, [this] {
QObject::connect(m_view, &WebView::link_unhovered, [this] {
m_hover_label->hide();
});
QObject::connect(m_view, &WebView::loadStarted, [this](const URL& url) {
QObject::connect(m_view, &WebView::load_started, [this](const URL& url) {
m_location_edit->setText(url.to_string().characters());
m_history.push(url, m_title.toUtf8().data());
});