InputBar: use auto type

Suggested-by:

Clang-Tidy: Use auto when initializing with new to avoid duplicating the type name
This commit is contained in:
Marcus Hoffmann 2021-12-03 01:26:19 +01:00
parent 313bd649dd
commit abcbcecac1
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ InputBar::command(const QString& command, QString args)
void
InputBar::showPreview(const QMimeData &source, const QString& path, const QStringList &formats)
{
dialogs::PreviewUploadOverlay *previewDialog_ =
auto *previewDialog_ =
new dialogs::PreviewUploadOverlay(ChatPage::instance());
previewDialog_->setAttribute(Qt::WA_DeleteOnClose);