[TD]CI clang warnings
This commit is contained in:
@@ -57,7 +57,7 @@ double Rez::guiX(double x)
|
||||
|
||||
Base::Vector3d Rez::guiX(Base::Vector3d v)
|
||||
{
|
||||
Base::Vector3d result(guiX(v.x),guiX(v.y),guiX(v.z));
|
||||
Base::Vector3d result(guiX(v.x), guiX(v.y), guiX(v.z));
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -80,7 +80,7 @@ double Rez::appX(double x)
|
||||
|
||||
Base::Vector3d Rez::appX(Base::Vector3d v)
|
||||
{
|
||||
Base::Vector3d result(appX(v.x),appX(v.y),appX(v.z));
|
||||
Base::Vector3d result(appX(v.x), appX(v.y), appX(v.z));
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -101,7 +101,7 @@ QPointF Rez::guiPt(QPointF p)
|
||||
|
||||
QPointF Rez::appPt(QPointF p)
|
||||
{
|
||||
QPointF result(appX(p.x()),appX(p.y()));
|
||||
QPointF result(appX(p.x()), appX(p.y()));
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -116,13 +116,13 @@ QRectF Rez::guiRect(QRectF r)
|
||||
|
||||
QSize Rez::guiSize(QSize s)
|
||||
{
|
||||
QSize result((int)guiX(s.width()),(int)guiX(s.height()));
|
||||
QSize result((int)guiX(s.width()), (int)guiX(s.height()));
|
||||
return result;
|
||||
}
|
||||
|
||||
QSize Rez::appSize(QSize s)
|
||||
{
|
||||
QSize result((int)appX(s.width()),(int)appX(s.height()));
|
||||
QSize result((int)appX(s.width()), (int)appX(s.height()));
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user