summaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/guiSQLiteStudio/common/exttableview.h
blob: 06e597c340539c9263dc612bc875f451e5a26b7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef EXTTABLEVIEW_H
#define EXTTABLEVIEW_H

#include <QTableView>

class ExtTableView : public QTableView
{
    public:
        explicit ExtTableView(QWidget* parent = nullptr);

    protected:
        void mouseDoubleClickEvent(QMouseEvent* e);
};

#endif // EXTTABLEVIEW_H