KShare/cropeditor/cropview.hpp
ArsenArsen d44aae4f43 Fix a memory leak with the crop editor
I did not properly handle deleting the editor so it would stay in memory permanently.
2017-07-02 20:51:15 +02:00

13 lines
202 B
C++

#ifndef CROPVIEW_HPP
#define CROPVIEW_HPP
#include <QGraphicsView>
#include <QKeyEvent>
class CropView : public QGraphicsView {
public:
CropView(QGraphicsScene *scene);
};
#endif // CROPVIEW_HPP