mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 16:58:06 -06:00
Fix typos
This commit is contained in:
@@ -45,7 +45,7 @@ namespace
|
||||
bool NativeSessionExtension::isSessionListening() const
|
||||
{
|
||||
const QReadLocker locker {&m_lock};
|
||||
return m_isSesssionListening;
|
||||
return m_isSessionListening;
|
||||
}
|
||||
|
||||
void NativeSessionExtension::added(const lt::session_handle &nativeSession)
|
||||
@@ -81,5 +81,5 @@ void NativeSessionExtension::on_alert(const lt::alert *alert)
|
||||
void NativeSessionExtension::handleSessionStatsAlert([[maybe_unused]] const lt::session_stats_alert *alert)
|
||||
{
|
||||
const QWriteLocker locker {&m_lock};
|
||||
m_isSesssionListening = m_nativeSession.is_listening();
|
||||
m_isSessionListening = m_nativeSession.is_listening();
|
||||
}
|
||||
|
||||
@@ -52,5 +52,5 @@ private:
|
||||
lt::session_handle m_nativeSession;
|
||||
|
||||
mutable QReadWriteLock m_lock;
|
||||
bool m_isSesssionListening = false;
|
||||
bool m_isSessionListening = false;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user