| 61 | using namespace Scintilla; |
| 62 | |
| 63 | static inline bool IsControlCharacter(int ch) { |
| 64 | // iscntrl returns true for lots of chars > 127 which are displayable |
| 65 | return ch >= 0 && ch < ' '; |
| 66 | } |
| 67 | |
| 68 | PrintParameters::PrintParameters() { |
| 69 | magnification = 0; |