Changes between Initial Version and Version 1 of Ticket #4376, comment 2
- Timestamp:
- 2017-03-29T17:38:33Z (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4376, comment 2
initial v1 12 12 [http://www.qtcentre.org/threads/43268-Setting-Text-in-QPlainTextEdit-without-Clearing-Undo-Redo-History] 13 13 14 An this (reimplement the slots): 15 {{{ 16 #!cpp 17 class MyTestEdit : public QPlainTextEdit { 18 Q_OBJECT 19 20 public slots: 21 void redo() { ... } 22 void undo() { ... } 23 24 }; 25 }}}