diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:51:28 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:24:21 +0900 |
| commit | f71f6c99da60331633888e77e6abe10456fb087e (patch) | |
| tree | dbdfc32cb98f0b404487731f886860ab19b8b4eb /src/svnfrontend/fronthelpers | |
| parent | a2bf0715f2265ba90a79fdb4410e856d4c4226ac (diff) | |
| download | tdesvn-f71f6c99.tar.gz tdesvn-f71f6c99.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 9ebb061777b4fed6107d056528ff19932d1c0379)
Diffstat (limited to 'src/svnfrontend/fronthelpers')
| -rw-r--r-- | src/svnfrontend/fronthelpers/propertylist.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/svnfrontend/fronthelpers/propertylist.cpp b/src/svnfrontend/fronthelpers/propertylist.cpp index 1f46571..7503b08 100644 --- a/src/svnfrontend/fronthelpers/propertylist.cpp +++ b/src/svnfrontend/fronthelpers/propertylist.cpp @@ -35,10 +35,10 @@ Propertylist::Propertylist(TQWidget *parent, const char *name) setRootIsDecorated(false); setSortColumn(0); setAcceptDrops(false); - connect(this,TQT_SIGNAL(itemRenamed(TQListViewItem*,const TQString&,int)),this,TQT_SLOT(slotItemRenamed(TQListViewItem*,const TQString&,int))); + connect(this,TQ_SIGNAL(itemRenamed(TQListViewItem*,const TQString&,int)),this,TQ_SLOT(slotItemRenamed(TQListViewItem*,const TQString&,int))); - connect(this,TQT_SIGNAL(contextMenuRequested(TQListViewItem *, const TQPoint &, int)),this, - TQT_SLOT(slotContextMenuRequested(TQListViewItem *, const TQPoint &, int))); + connect(this,TQ_SIGNAL(contextMenuRequested(TQListViewItem *, const TQPoint &, int)),this, + TQ_SLOT(slotContextMenuRequested(TQListViewItem *, const TQPoint &, int))); //setFullWidth( TRUE ); } @@ -150,8 +150,8 @@ bool Propertylist::checkExisting(const TQString&aName,TQListViewItem*it) void Propertylist::addCallback(TQObject*ob) { if (ob) { - connect(this,TQT_SIGNAL(sigSetProperty(const svn::PropertiesMap&,const TQValueList<TQString>&,const TQString&)), - ob,TQT_SLOT(slotChangeProperties(const svn::PropertiesMap&,const TQValueList<TQString>&,const TQString&))); + connect(this,TQ_SIGNAL(sigSetProperty(const svn::PropertiesMap&,const TQValueList<TQString>&,const TQString&)), + ob,TQ_SLOT(slotChangeProperties(const svn::PropertiesMap&,const TQValueList<TQString>&,const TQString&))); } } |
