diff options
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index b690d8011..aefca0a85 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -88,10 +88,6 @@ Timer::Timer() : Idler::Idler() : state(false), idlerID(0) {} -static int RoundXYPosition(XYPOSITION xyPos) { - return int(xyPos+0.5); -} - static inline bool IsControlCharacter(int ch) { // iscntrl returns true for lots of chars > 127 which are displayable return ch >= 0 && ch < ' '; |