diff --git a/src/app/stacktrace_win.h b/src/app/stacktrace_win.h index 0ed005b27..4ad573a83 100644 --- a/src/app/stacktrace_win.h +++ b/src/app/stacktrace_win.h @@ -138,7 +138,7 @@ bool straceWin::makeRelativePath(const QString& dir, QString& file) QString straceWin::getSourcePathAndLineNumber(HANDLE hProcess, DWORD64 addr) { - IMAGEHLP_LINE64 line = {0}; + IMAGEHLP_LINE64 line {}; line.SizeOfStruct = sizeof(IMAGEHLP_LINE64); DWORD dwDisplacement = 0; diff --git a/src/gui/torrentcontentmodel.cpp b/src/gui/torrentcontentmodel.cpp index 9130c86b7..94b2fead6 100644 --- a/src/gui/torrentcontentmodel.cpp +++ b/src/gui/torrentcontentmodel.cpp @@ -132,7 +132,7 @@ namespace QPixmap pixmapForExtension(const QString &ext) const override { const QString extWithDot = QLatin1Char('.') + ext; - SHFILEINFO sfi = { 0 }; + SHFILEINFO sfi {}; HRESULT hr = ::SHGetFileInfoW(extWithDot.toStdWString().c_str(), FILE_ATTRIBUTE_NORMAL, &sfi, sizeof(sfi), SHGFI_ICON | SHGFI_USEFILEATTRIBUTES); if (FAILED(hr))