diff options
Diffstat (limited to 'src/editor.h')
-rw-r--r-- | src/editor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/editor.h b/src/editor.h index 509cf24..bb338b0 100644 --- a/src/editor.h +++ b/src/editor.h @@ -1,6 +1,7 @@ #include <QObject> #include <QString> #include <QWidget> +#include <QWheelEvent> #ifdef _QCODE_EDIT_ #include <qeditor.h> @@ -33,5 +34,7 @@ public slots: void unindentSelection(); void commentSelection(); void uncommentSelection(); +private: + void wheelEvent ( QWheelEvent * event ); #endif }; |