mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Supress unused var warning for STUN_SERVER (used only if gstreamer supported)
This commit is contained in:
parent
b64e6e9cd5
commit
888d004764
4 changed files with 6 additions and 6 deletions
|
@ -435,8 +435,8 @@ send_key_request_for(mtx::events::EncryptedEvent<mtx::events::msg::Encrypted> e,
|
|||
e.content.session_id);
|
||||
|
||||
mtx::events::msg::KeyRequest request;
|
||||
request.action = !cancel ? mtx::events::msg::RequestAction::Request
|
||||
: mtx::events::msg::RequestAction::Cancellation;
|
||||
request.action = !cancel ? mtx::events::msg::RequestAction::Request
|
||||
: mtx::events::msg::RequestAction::Cancellation;
|
||||
request.algorithm = MEGOLM_ALGO;
|
||||
request.room_id = e.room_id;
|
||||
request.sender_key = e.content.sender_key;
|
||||
|
|
|
@ -453,8 +453,8 @@ FilteredTextEdit::completerRect()
|
|||
auto item_height = completer_->popup()->sizeHintForRow(0);
|
||||
auto max_height = item_height * completer_->maxVisibleItems();
|
||||
auto height = (completer_->completionCount() > completer_->maxVisibleItems())
|
||||
? max_height
|
||||
: completer_->completionCount() * item_height;
|
||||
? max_height
|
||||
: completer_->completionCount() * item_height;
|
||||
rect.setWidth(completer_->popup()->sizeHintForColumn(0));
|
||||
rect.moveBottom(-height);
|
||||
return rect;
|
||||
|
|
|
@ -638,7 +638,7 @@ utils::luminance(const QColor &col)
|
|||
qreal lumRgb[3];
|
||||
|
||||
for (int i = 0; i < 3; i++) {
|
||||
qreal v = colRgb[i] / 255.0;
|
||||
qreal v = colRgb[i] / 255.0;
|
||||
v <= 0.03928 ? lumRgb[i] = v / 12.92 : lumRgb[i] = qPow((v + 0.055) / 1.055, 2.4);
|
||||
}
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ extern "C"
|
|||
#endif
|
||||
|
||||
// https://github.com/vector-im/riot-web/issues/10173
|
||||
constexpr std::string_view STUN_SERVER = "stun://turn.matrix.org:3478";
|
||||
[[maybe_unused]] constexpr std::string_view STUN_SERVER = "stun://turn.matrix.org:3478";
|
||||
|
||||
Q_DECLARE_METATYPE(webrtc::State)
|
||||
|
||||
|
|
Loading…
Reference in a new issue