1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +01:00

Compare commits

..

No commits in common. "4848190377093247f9afdff695d71d759651a23f" and "5a71deda15f15f3658bc22db9cc71767a851d17e" have entirely different histories.

6 changed files with 5 additions and 7 deletions

View File

@ -1,4 +1,4 @@
#include <QWidget>
#include <QtWidgets>
#include "flowlayout.h"
struct FlowLayoutItem

View File

@ -322,7 +322,7 @@ bool JLS::decode(const SubFile *file, SubFile::Handle &hdl, Matrix<qint16> &img)
if (!readLine(bs))
return false;
memcpy(img.row(i), _current + 1, _w * sizeof(quint16));
memcpy(&img.at(i, 0), _current + 1, _w * sizeof(quint16));
quint16 *tmp = _last;
_last = _current;

View File

@ -21,7 +21,6 @@ public:
T &at(int n) {return _m[n];}
T &at(int i, int j) {return _m[_w * i + j];}
T const &at(int i, int j) const {return _m.at(_w * i + j);}
T *row(int i) {return &_m[_w * i];}
bool isNull() const {return (_h == 0 || _w == 0);}
int size() const {return _m.size();}

View File

@ -1,5 +1,4 @@
#include <cmath>
#include <QtMath>
#include <QtCore>
#include "common/wgs84.h"
#include "osm.h"

View File

@ -1,4 +1,4 @@
#include <QtMath>
#include <QtCore>
#include <QDir>
#include <QPainter>
#include <QPixmapCache>

View File

@ -1,4 +1,4 @@
#include <QtMath>
#include <QtCore>
#include <QPainter>
#include <QDir>
#include <QPixmapCache>