diff options
author | Michele Calgaro <[email protected]> | 2023-12-29 16:51:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-29 16:51:28 +0900 |
commit | 9ebb061777b4fed6107d056528ff19932d1c0379 (patch) | |
tree | e6759e2a527bbabcd6d90e9a92adcd3b5bae738c /src/svnfrontend/editproperty_impl.cpp | |
parent | 70a9b1f3fb15c9725f1ad6ba5ffa4b3c1554e97c (diff) | |
download | tdesvn-9ebb061777b4fed6107d056528ff19932d1c0379.tar.gz tdesvn-9ebb061777b4fed6107d056528ff19932d1c0379.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/svnfrontend/editproperty_impl.cpp')
-rw-r--r-- | src/svnfrontend/editproperty_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svnfrontend/editproperty_impl.cpp b/src/svnfrontend/editproperty_impl.cpp index c87ff8b..b1bcca2 100644 --- a/src/svnfrontend/editproperty_impl.cpp +++ b/src/svnfrontend/editproperty_impl.cpp @@ -123,7 +123,7 @@ EditProperty_impl::EditProperty_impl(TQWidget *parent, const char *name) isDir = false; TQToolTip::add(m_NameEdit, "Select or enter new property"); - connect(m_NameEdit, TQT_SIGNAL(activated(const TQString &)), this, TQT_SLOT(updateToolTip(const TQString &))); + connect(m_NameEdit, TQ_SIGNAL(activated(const TQString &)), this, TQ_SLOT(updateToolTip(const TQString &))); } |