##// END OF EJS Templates
Removed hack from QCustomPlot, moved to QCustomPlotVect class.
Removed hack from QCustomPlot, moved to QCustomPlotVect class.

File last commit:

r6:665de41c4c74 default
r7:6e23aedd1ca8 default
Show More
filesystemmodel.h
16 lines | 362 B | text/x-c | CLexer
#ifndef FILESYSTEMMODEL_H
#define FILESYSTEMMODEL_H
#include <QObject>
#include <QFileSystemModel>
class FileSystemModel : public QFileSystemModel
{
public:
FileSystemModel(QObject* parent=0);
~FileSystemModel();
Qt::DropActions supportedDropActions() const;
Qt::ItemFlags flags(const QModelIndex &index) const;
};
#endif // FILESYSTEMMODEL_H