diff options
author | Michele Calgaro <[email protected]> | 2023-12-29 16:32:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-29 16:32:00 +0900 |
commit | 07106c0a34f021d33eecae6571f0a67c990081bd (patch) | |
tree | 2a80dba861658d2d64b12c24318c43787c09b721 /src/kserialview.h | |
parent | 113054cd5b4ce6ed21917e36f30d1fdcf780c525 (diff) | |
download | kpicosim-07106c0a34f021d33eecae6571f0a67c990081bd.tar.gz kpicosim-07106c0a34f021d33eecae6571f0a67c990081bd.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kserialview.h')
-rw-r--r-- | src/kserialview.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kserialview.h b/src/kserialview.h index 253ebff..af5813f 100644 --- a/src/kserialview.h +++ b/src/kserialview.h @@ -56,7 +56,7 @@ class KSerialWindow : public KTextEdit virtual TQPopupMenu *createPopupMenu( const TQPoint &pos ) { TQPopupMenu *menu = new TQPopupMenu( this ) ; - menu->insertItem( "clear view", this, TQT_SLOT( clearView() ) ) ; + menu->insertItem( "clear view", this, TQ_SLOT( clearView() ) ) ; return menu ; } public slots: |