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

#include <QTableWidget>

class ExtTableWidget : public QTableWidget
{
    public:
        explicit ExtTableWidget(QWidget* parent = nullptr);

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

#endif // EXTTABLEWIDGET_H