mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 09:05:58 +01:00
internal: Remove some unused lambda captures (#8218)
This commit is contained in:
parent
cdac64970e
commit
f603a22af0
5 changed files with 7 additions and 7 deletions
|
@ -197,7 +197,7 @@ CTabletPad::CTabletPad(SP<Aquamarine::ITabletPad> pad_) : pad(pad_) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
listeners.attach = pad->events.attach.registerListener([this](std::any d) {
|
listeners.attach = pad->events.attach.registerListener([](std::any d) {
|
||||||
; // TODO: this doesn't do anything in aq atm
|
; // TODO: this doesn't do anything in aq atm
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ SP<CUUIDToken> CTokenManager::getToken(const std::string& uuid) {
|
||||||
|
|
||||||
// cleanup expired tokens
|
// cleanup expired tokens
|
||||||
const auto NOW = std::chrono::steady_clock::now();
|
const auto NOW = std::chrono::steady_clock::now();
|
||||||
std::erase_if(m_mTokens, [this, &NOW](const auto& el) { return el.second->expiresAt < NOW; });
|
std::erase_if(m_mTokens, [&NOW](const auto& el) { return el.second->expiresAt < NOW; });
|
||||||
|
|
||||||
if (!m_mTokens.contains(uuid))
|
if (!m_mTokens.contains(uuid))
|
||||||
return {};
|
return {};
|
||||||
|
|
|
@ -905,7 +905,7 @@ void CInputManager::setupKeyboard(SP<IKeyboard> keeb) {
|
||||||
keeb.get());
|
keeb.get());
|
||||||
|
|
||||||
keeb->keyboardEvents.keymap.registerStaticListener(
|
keeb->keyboardEvents.keymap.registerStaticListener(
|
||||||
[this](void* owner, std::any data) {
|
[](void* owner, std::any data) {
|
||||||
auto PKEEB = ((IKeyboard*)owner)->self.lock();
|
auto PKEEB = ((IKeyboard*)owner)->self.lock();
|
||||||
const auto LAYOUT = PKEEB->getActiveLayout();
|
const auto LAYOUT = PKEEB->getActiveLayout();
|
||||||
|
|
||||||
|
|
|
@ -112,7 +112,7 @@ CWLRDataDevice::CWLRDataDevice(SP<CZwlrDataControlDeviceV1> resource_) : resourc
|
||||||
resource->setDestroy([this](CZwlrDataControlDeviceV1* r) { PROTO::dataWlr->destroyResource(this); });
|
resource->setDestroy([this](CZwlrDataControlDeviceV1* r) { PROTO::dataWlr->destroyResource(this); });
|
||||||
resource->setOnDestroy([this](CZwlrDataControlDeviceV1* r) { PROTO::dataWlr->destroyResource(this); });
|
resource->setOnDestroy([this](CZwlrDataControlDeviceV1* r) { PROTO::dataWlr->destroyResource(this); });
|
||||||
|
|
||||||
resource->setSetSelection([this](CZwlrDataControlDeviceV1* r, wl_resource* sourceR) {
|
resource->setSetSelection([](CZwlrDataControlDeviceV1* r, wl_resource* sourceR) {
|
||||||
auto source = sourceR ? CWLRDataSource::fromResource(sourceR) : CSharedPointer<CWLRDataSource>{};
|
auto source = sourceR ? CWLRDataSource::fromResource(sourceR) : CSharedPointer<CWLRDataSource>{};
|
||||||
if (!source) {
|
if (!source) {
|
||||||
LOGM(LOG, "wlr reset selection received");
|
LOGM(LOG, "wlr reset selection received");
|
||||||
|
@ -129,7 +129,7 @@ CWLRDataDevice::CWLRDataDevice(SP<CZwlrDataControlDeviceV1> resource_) : resourc
|
||||||
g_pSeatManager->setCurrentSelection(source);
|
g_pSeatManager->setCurrentSelection(source);
|
||||||
});
|
});
|
||||||
|
|
||||||
resource->setSetPrimarySelection([this](CZwlrDataControlDeviceV1* r, wl_resource* sourceR) {
|
resource->setSetPrimarySelection([](CZwlrDataControlDeviceV1* r, wl_resource* sourceR) {
|
||||||
auto source = sourceR ? CWLRDataSource::fromResource(sourceR) : CSharedPointer<CWLRDataSource>{};
|
auto source = sourceR ? CWLRDataSource::fromResource(sourceR) : CSharedPointer<CWLRDataSource>{};
|
||||||
if (!source) {
|
if (!source) {
|
||||||
LOGM(LOG, "wlr reset primary selection received");
|
LOGM(LOG, "wlr reset primary selection received");
|
||||||
|
|
|
@ -113,7 +113,7 @@ CPrimarySelectionDevice::CPrimarySelectionDevice(SP<CZwpPrimarySelectionDeviceV1
|
||||||
resource->setDestroy([this](CZwpPrimarySelectionDeviceV1* r) { PROTO::primarySelection->destroyResource(this); });
|
resource->setDestroy([this](CZwpPrimarySelectionDeviceV1* r) { PROTO::primarySelection->destroyResource(this); });
|
||||||
resource->setOnDestroy([this](CZwpPrimarySelectionDeviceV1* r) { PROTO::primarySelection->destroyResource(this); });
|
resource->setOnDestroy([this](CZwpPrimarySelectionDeviceV1* r) { PROTO::primarySelection->destroyResource(this); });
|
||||||
|
|
||||||
resource->setSetSelection([this](CZwpPrimarySelectionDeviceV1* r, wl_resource* sourceR, uint32_t serial) {
|
resource->setSetSelection([](CZwpPrimarySelectionDeviceV1* r, wl_resource* sourceR, uint32_t serial) {
|
||||||
static auto PPRIMARYSEL = CConfigValue<Hyprlang::INT>("misc:middle_click_paste");
|
static auto PPRIMARYSEL = CConfigValue<Hyprlang::INT>("misc:middle_click_paste");
|
||||||
|
|
||||||
if (!*PPRIMARYSEL) {
|
if (!*PPRIMARYSEL) {
|
||||||
|
|
Loading…
Reference in a new issue