error C2397: conversion from 'int' to 'double' requires a narrowing conversion.

This commit is contained in:
Roman Telezhynskyi 2022-11-11 20:56:56 +02:00
parent 595cbc44ac
commit 93be6f3771

View File

@ -109,7 +109,7 @@ private:
Q_DISABLE_COPY_MOVE(VDxfEngine) // NOLINT Q_DISABLE_COPY_MOVE(VDxfEngine) // NOLINT
QSize m_size{}; QSize m_size{};
double m_resolution{static_cast<int>(PrintDPI)}; double m_resolution{PrintDPI};
QString m_fileName{}; QString m_fileName{};
DRW::Version m_version{DRW::AC1014}; DRW::Version m_version{DRW::AC1014};
bool m_binary{false}; bool m_binary{false};