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-06 19:52:52 +0900 |
commit | 31622296062e9eaafb3429eb84f8780fab22e597 (patch) | |
tree | 7220cbbc37f829f7139b672ae1d2a74cfb7a6d36 /kontact_plugin/basket_plugin.cpp | |
parent | 50245e3df9d78cdd42e9551fb32a3ea032434b0e (diff) | |
download | basket-31622296.tar.gz basket-31622296.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe)
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; } |