]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/emptytable.h
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / emptytable.h
index 1f18fd09e10e07c1afbf97c257ba4ac42c72cc82..d00e33bb033408b983ec1e0e5be0513752e73638 100644 (file)
@@ -28,27 +28,23 @@ class EmptyTable : public QtTableView {
 public:
        EmptyTable(QWidget * parent = 0, const char * name = 0);
 
-       ~EmptyTable() {};
+       ~EmptyTable() {}
 
        virtual QSize sizeHint() const;
-
 public slots:
        /// set the number of columns in the table and emit colsChanged() signal
        void setNumberColumns(int nr_cols);
        /// set the number of rows in the table and emit rowsChanged() signal
        void setNumberRows(int nr_rows);
-
 signals:
        /// the number of columns changed
        void colsChanged(int);
        /// the number of rows changed
        void rowsChanged(int);
-
 protected:
        /// fill in a cell
        virtual void paintCell(class QPainter *, int, int);
        virtual void mouseMoveEvent(QMouseEvent *);
-
 private:
        /// number of current columns
        unsigned int cols;