diff options
author | Michele Calgaro <[email protected]> | 2024-01-01 18:12:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-01 18:12:44 +0900 |
commit | 98f86ddadeb4f41b12e5735175951a7c5fec800b (patch) | |
tree | 134fece2d9cf2c2f161959afbaea97d9a82884a9 /src/profilenetworkrouteoptions.cpp | |
parent | fdfb4aa064360f849c6acaf2b81c69086f5d51f4 (diff) | |
download | kvpnc-98f86ddadeb4f41b12e5735175951a7c5fec800b.tar.gz kvpnc-98f86ddadeb4f41b12e5735175951a7c5fec800b.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/profilenetworkrouteoptions.cpp')
-rw-r--r-- | src/profilenetworkrouteoptions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profilenetworkrouteoptions.cpp b/src/profilenetworkrouteoptions.cpp index b8686bd..26c5baf 100644 --- a/src/profilenetworkrouteoptions.cpp +++ b/src/profilenetworkrouteoptions.cpp @@ -201,7 +201,7 @@ void ProfileNetworkRouteOptions::contextMenuRequested ( TQListViewItem * item, c ContextMenu->insertItem(i18n("&Delete...")); } ContextMenu->insertItem(i18n("&Add...")); - connect ( ContextMenu, TQT_SIGNAL ( activated ( int ) ), this, TQT_SLOT ( doContextMenuAction ( int ) ) ); + connect ( ContextMenu, TQ_SIGNAL ( activated ( int ) ), this, TQ_SLOT ( doContextMenuAction ( int ) ) ); ContextMenu->show(); ContextMenu->setGeometry(pos.x(),pos.y(), ContextMenu->width(),ContextMenu->height()); } |