diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 14:04:47 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-18 19:03:51 +0900 |
commit | 8114410a311b64cba3de27fc60ac59ce3322eaab (patch) | |
tree | 126ed143667ccf4cdab62a4bec5a17eb2f0921cc /fifteenapplet/fifteenapplet.cpp | |
parent | 233d1477e9794af302b81f0f8af4155eff3ab2e4 (diff) | |
download | tdetoys-8114410a311b64cba3de27fc60ac59ce3322eaab.tar.gz tdetoys-8114410a311b64cba3de27fc60ac59ce3322eaab.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit cb5e787fde24bc986f17de4c78b5840f8ed85856)
Diffstat (limited to 'fifteenapplet/fifteenapplet.cpp')
-rw-r--r-- | fifteenapplet/fifteenapplet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fifteenapplet/fifteenapplet.cpp b/fifteenapplet/fifteenapplet.cpp index dd350cb..d2ffd9d 100644 --- a/fifteenapplet/fifteenapplet.cpp +++ b/fifteenapplet/fifteenapplet.cpp @@ -93,8 +93,8 @@ PiecesTable::PiecesTable(TQWidget* parent, const char* name ) : QtTableView(parent, name), _activeRow(-1), _activeCol(-1), _randomized(false) { _menu = new TQPopupMenu(this); - _menu->insertItem(i18n("R&andomize Pieces"), this, TQT_SLOT(randomizeMap())); - _menu->insertItem(i18n("&Reset Pieces"), this, TQT_SLOT(resetMap())); + _menu->insertItem(i18n("R&andomize Pieces"), this, TQ_SLOT(randomizeMap())); + _menu->insertItem(i18n("&Reset Pieces"), this, TQ_SLOT(resetMap())); _menu->adjustSize(); // setup table view setFrameStyle(StyledPanel | Sunken); |