diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:28:49 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:28:49 +0900 |
| commit | bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe (patch) | |
| tree | 8911427e76b2ea1dc7d98cf2a9a0f2da987802b5 /kontact_plugin/basket_plugin.cpp | |
| parent | 7b0920cd4180823f7a42350d1bdb914d697f4b9c (diff) | |
| download | basket-bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe.tar.gz basket-bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kontact_plugin/basket_plugin.cpp')
| -rw-r--r-- | kontact_plugin/basket_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kontact_plugin/basket_plugin.cpp b/kontact_plugin/basket_plugin.cpp index f973e48..8ebaed5 100644 --- a/kontact_plugin/basket_plugin.cpp +++ b/kontact_plugin/basket_plugin.cpp @@ -38,7 +38,7 @@ BasketPlugin::BasketPlugin( Kontact::Core *core, const char *, const TQStringLis { setInstance( BasketPluginFactory::instance() ); insertNewAction(new TDEAction( i18n("&New Basket..."), "basket", CTRL+SHIFT+Key_B, - this, TQT_SLOT(newBasket()), actionCollection(), "basket_new" )); + this, TQ_SLOT(newBasket()), actionCollection(), "basket_new" )); m_uniqueAppWatcher = new Kontact::UniqueAppWatcher( new Kontact::UniqueAppHandlerFactory<BasketUniqueAppHandler>(), this); @@ -55,7 +55,7 @@ KParts::ReadOnlyPart* BasketPlugin::createPart() return 0; m_stub = new BasketDcopInterface_stub(dcopClient(), "basket", "BasketIface"); - connect(part, TQT_SIGNAL(showPart()), this, TQT_SLOT(showPart())); + connect(part, TQ_SIGNAL(showPart()), this, TQ_SLOT(showPart())); return part; } |
