mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-09 16:54:28 +02:00
Added support for OziExplorer offline maps
This commit is contained in:
@ -48,3 +48,9 @@ int str2int(const char *str, int len)
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
QRectF scaled(const QRectF &rect, qreal factor)
|
||||
{
|
||||
return QRectF(QPointF(rect.left() * factor, rect.top() * factor),
|
||||
QSizeF(rect.width() * factor, rect.height() * factor));
|
||||
}
|
||||
|
Reference in New Issue
Block a user