mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
profile: remove DiveRectItem
This class wasn't used anymore. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
eb081f4564
commit
88bcf045e3
4 changed files with 0 additions and 28 deletions
|
@ -181,7 +181,6 @@ SOURCES += subsurface-mobile-main.cpp \
|
|||
profile-widget/tankitem.cpp \
|
||||
profile-widget/tooltipitem.cpp \
|
||||
profile-widget/divelineitem.cpp \
|
||||
profile-widget/diverectitem.cpp \
|
||||
profile-widget/divetextitem.cpp \
|
||||
profile-widget/profileview.cpp
|
||||
|
||||
|
@ -345,7 +344,6 @@ HEADERS += \
|
|||
profile-widget/divecartesianaxis.h \
|
||||
profile-widget/divelineitem.h \
|
||||
profile-widget/divepixmapcache.h \
|
||||
profile-widget/diverectitem.h \
|
||||
profile-widget/divetextitem.h \
|
||||
profile-widget/profileview.h
|
||||
|
||||
|
|
|
@ -14,8 +14,6 @@ set(SUBSURFACE_PROFILE_LIB_SRCS
|
|||
divepercentageitem.h
|
||||
diveprofileitem.cpp
|
||||
diveprofileitem.h
|
||||
diverectitem.cpp
|
||||
diverectitem.h
|
||||
divetextitem.cpp
|
||||
divetextitem.h
|
||||
pictureitem.h
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#include "diverectitem.h"
|
||||
|
||||
DiveRectItem::DiveRectItem(QObject *parent, QGraphicsItem *parentItem) : QObject(parent), QGraphicsRectItem(parentItem)
|
||||
{
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#ifndef DIVERECTITEM_H
|
||||
#define DIVERECTITEM_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QGraphicsRectItem>
|
||||
|
||||
class DiveRectItem : public QObject, public QGraphicsRectItem {
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(QRectF rect WRITE setRect READ rect)
|
||||
Q_PROPERTY(QPointF pos WRITE setPos READ pos)
|
||||
Q_PROPERTY(qreal x WRITE setX READ x)
|
||||
Q_PROPERTY(qreal y WRITE setY READ y)
|
||||
public:
|
||||
DiveRectItem(QObject *parent = 0, QGraphicsItem *parentItem = 0);
|
||||
};
|
||||
|
||||
#endif // DIVERECTITEM_H
|
Loading…
Add table
Add a link
Reference in a new issue