Constructor. */
| 46 | |
| 47 | /* Constructor. */ |
| 48 | NoteFormatter::NoteFormatter(QObject *parent) : |
| 49 | QObject(parent) |
| 50 | { |
| 51 | thumbnail = false; |
| 52 | this->setNoteHistory(false); |
| 53 | this->noteHistory = false; |
| 54 | this->pdfPreview = true; |
| 55 | this->readOnly = false; |
| 56 | this->formatError = false; |
| 57 | this->inkNote = false; |
| 58 | this->resourceError = false; |
| 59 | this->resourceHighlight = false; |
| 60 | } |
| 61 | |
| 62 | |
| 63 | /* |
nothing calls this directly
no test coverage detected