remove some empty overloads
This commit is contained in:
parent
89c7e9b726
commit
e834795263
16
corona.cpp
16
corona.cpp
@ -26,7 +26,6 @@
|
||||
#include <QApplication>
|
||||
#include <QDesktopWidget>
|
||||
#include <QGraphicsView>
|
||||
#include <QGraphicsSceneDragDropEvent>
|
||||
#include <QGraphicsGridLayout>
|
||||
#include <QMimeData>
|
||||
#include <QPainter>
|
||||
@ -631,21 +630,6 @@ QString Corona::preferredToolBoxPlugin(const Containment::Type type) const
|
||||
return d->toolBoxPlugins.value(type);
|
||||
}
|
||||
|
||||
void Corona::dragEnterEvent(QGraphicsSceneDragDropEvent *event)
|
||||
{
|
||||
QGraphicsScene::dragEnterEvent(event);
|
||||
}
|
||||
|
||||
void Corona::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
|
||||
{
|
||||
QGraphicsScene::dragLeaveEvent(event);
|
||||
}
|
||||
|
||||
void Corona::dragMoveEvent(QGraphicsSceneDragDropEvent *event)
|
||||
{
|
||||
QGraphicsScene::dragMoveEvent(event);
|
||||
}
|
||||
|
||||
ImmutabilityType Corona::immutability() const
|
||||
{
|
||||
return d->immutability;
|
||||
|
5
corona.h
5
corona.h
@ -491,11 +491,6 @@ protected:
|
||||
*/
|
||||
void setDefaultContainmentPlugin(const QString &name);
|
||||
|
||||
//Reimplemented from QGraphicsScene
|
||||
void dragEnterEvent(QGraphicsSceneDragDropEvent *event);
|
||||
void dragLeaveEvent(QGraphicsSceneDragDropEvent *event);
|
||||
void dragMoveEvent(QGraphicsSceneDragDropEvent *event);
|
||||
|
||||
private:
|
||||
CoronaPrivate *const d;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user