Browse Source

Merge pull request #5249

Pavel Karelin (1):
      chore: Fix warnings: remove unused variables
pull/5247/merge
sudden6 7 years ago
parent
commit
a12bb068d0
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
  1. 4
      src/widget/friendwidget.cpp

4
src/widget/friendwidget.cpp

@ -133,7 +133,6 @@ void FriendWidget::onContextMenuCalled(QContextMenuEvent* event) @@ -133,7 +133,6 @@ void FriendWidget::onContextMenuCalled(QContextMenuEvent* event)
});
}
const auto& s = Settings::getInstance();
const auto circleId = chatroom->getCircleId();
auto circleMenu =
menu.addMenu(tr("Move to circle...", "Menu to move a friend into a different circle"));
@ -280,9 +279,6 @@ void FriendWidget::moveToCircle(int newCircleId) @@ -280,9 +279,6 @@ void FriendWidget::moveToCircle(int newCircleId)
void FriendWidget::changeAutoAccept(bool enable)
{
const auto frnd = chatroom->getFriend();
const auto pk = frnd->getPublicKey();
auto& s = Settings::getInstance();
if (enable) {
const auto oldDir = chatroom->getAutoAcceptDir();
const auto newDir = QFileDialog::getExistingDirectory(

Loading…
Cancel
Save