Changes between Initial Version and Version 1 of Ticket #4376, comment 2


Ignore:
Timestamp:
2017-03-29T17:38:33Z (8 years ago)
Author:
Jan Kokert

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4376, comment 2

    initial v1  
    1212[http://www.qtcentre.org/threads/43268-Setting-Text-in-QPlainTextEdit-without-Clearing-Undo-Redo-History]
    1313
     14An this (reimplement the slots):
     15{{{
     16#!cpp
     17class MyTestEdit : public QPlainTextEdit {
     18    Q_OBJECT
     19
     20public slots:
     21    void redo() { ... }
     22    void undo() { ... }
     23
     24};
     25}}}