diff options
author | nyamatongwe <devnull@localhost> | 2001-08-31 23:44:34 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-08-31 23:44:34 +0000 |
commit | 669deeb6407f674b4017f2f7393e3ccce1b3a58a (patch) | |
tree | 41219289ecca2ec498d26427f5c9d4c3439dc81a /src | |
parent | 6a7d75189d634d7296bc5e8d80004f0c46839666 (diff) | |
download | scintilla-mirror-669deeb6407f674b4017f2f7393e3ccce1b3a58a.tar.gz |
Moved Windows-specific mouse wheel variables from Editor to ScintillaWin.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 3 | ||||
-rw-r--r-- | src/Editor.h | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 5b72ac579..346d1e1fd 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -85,9 +85,6 @@ Editor::Editor() { searchAnchor = 0; - ucWheelScrollLines = 0; - cWheelDelta = 0; //wheel delta from roll - xOffset = 0; xCaretMargin = 50; horizontalScrollBarVisible = true; diff --git a/src/Editor.h b/src/Editor.h index d42f5ad14..1c1a13660 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -91,9 +91,6 @@ protected: // ScintillaBase subclass needs access to much of Editor Surface pixmapSelPattern; Surface pixmapIndentGuide; Surface pixmapIndentGuideHighlight; - // Intellimouse support - currently only implemented for Windows - unsigned int ucWheelScrollLines; - int cWheelDelta; ///< Wheel delta from roll KeyMap kmap; |