mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Switch new files to unix line endings
I thought we had this automated, but Lubomirs commits introduced a few files with dos line endings. This is purely a change of line endings, no other changes. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
5be6fd2f8e
commit
c59cdd6efd
5 changed files with 495 additions and 495 deletions
|
@ -1,45 +1,45 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#ifndef MAPWIDGET_H
|
||||
#define MAPWIDGET_H
|
||||
|
||||
#include <QQuickWidget>
|
||||
#include <QList>
|
||||
|
||||
#undef IGNORE
|
||||
|
||||
class QResizeEvent;
|
||||
class QQuickItem;
|
||||
class MapWidgetHelper;
|
||||
struct dive_site;
|
||||
|
||||
class MapWidget : public QQuickWidget {
|
||||
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
MapWidget(QWidget *parent = NULL);
|
||||
~MapWidget();
|
||||
|
||||
static MapWidget *instance();
|
||||
void reload();
|
||||
|
||||
signals:
|
||||
void coordinatesChanged();
|
||||
|
||||
public slots:
|
||||
void centerOnDiveSite(struct dive_site *);
|
||||
void centerOnIndex(const QModelIndex& idx);
|
||||
void endGetDiveCoordinates();
|
||||
void repopulateLabels();
|
||||
void prepareForGetDiveCoordinates();
|
||||
void selectedDivesChanged(QList<int>);
|
||||
void coordinatesChangedLocal();
|
||||
|
||||
private:
|
||||
void setEditMode(bool editMode);
|
||||
static MapWidget *m_instance;
|
||||
QQuickItem *m_rootItem;
|
||||
MapWidgetHelper *m_mapHelper;
|
||||
};
|
||||
|
||||
#endif // MAPWIDGET_H
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
#ifndef MAPWIDGET_H
|
||||
#define MAPWIDGET_H
|
||||
|
||||
#include <QQuickWidget>
|
||||
#include <QList>
|
||||
|
||||
#undef IGNORE
|
||||
|
||||
class QResizeEvent;
|
||||
class QQuickItem;
|
||||
class MapWidgetHelper;
|
||||
struct dive_site;
|
||||
|
||||
class MapWidget : public QQuickWidget {
|
||||
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
MapWidget(QWidget *parent = NULL);
|
||||
~MapWidget();
|
||||
|
||||
static MapWidget *instance();
|
||||
void reload();
|
||||
|
||||
signals:
|
||||
void coordinatesChanged();
|
||||
|
||||
public slots:
|
||||
void centerOnDiveSite(struct dive_site *);
|
||||
void centerOnIndex(const QModelIndex& idx);
|
||||
void endGetDiveCoordinates();
|
||||
void repopulateLabels();
|
||||
void prepareForGetDiveCoordinates();
|
||||
void selectedDivesChanged(QList<int>);
|
||||
void coordinatesChangedLocal();
|
||||
|
||||
private:
|
||||
void setEditMode(bool editMode);
|
||||
static MapWidget *m_instance;
|
||||
QQuickItem *m_rootItem;
|
||||
MapWidgetHelper *m_mapHelper;
|
||||
};
|
||||
|
||||
#endif // MAPWIDGET_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue