diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index d1ee320b6..c25333d81 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -6598,7 +6598,7 @@ bool HistoryWidget::confirmSendingFiles(const QMimeData *data, CompressConfirm c return false; } - auto &urls = data->urls(); + auto urls = data->urls(); if (!urls.isEmpty()) { for_const (auto &url, urls) { if (url.isLocalFile()) { diff --git a/Telegram/SourceFiles/platform/mac/file_dialog_mac.h b/Telegram/SourceFiles/platform/mac/file_dialog_mac.h index 0718f08ff..33e71b351 100644 --- a/Telegram/SourceFiles/platform/mac/file_dialog_mac.h +++ b/Telegram/SourceFiles/platform/mac/file_dialog_mac.h @@ -20,6 +20,8 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org */ #pragma once +#include "ui/filedialog.h" + namespace Platform { namespace FileDialog {