summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/fronthelpers/propertylist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnfrontend/fronthelpers/propertylist.h')
-rw-r--r--src/svnfrontend/fronthelpers/propertylist.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/svnfrontend/fronthelpers/propertylist.h b/src/svnfrontend/fronthelpers/propertylist.h
index d3cf245..be4cd81 100644
--- a/src/svnfrontend/fronthelpers/propertylist.h
+++ b/src/svnfrontend/fronthelpers/propertylist.h
@@ -29,29 +29,30 @@
class Propertylist : public KListView
{
Q_OBJECT
+ TQ_OBJECT
public:
- Propertylist(QWidget *parent = 0, const char *name = 0);
+ Propertylist(TQWidget *tqparent = 0, const char *name = 0);
~Propertylist();
- bool checkExisting(const QString&aName,QListViewItem*it=0);
+ bool checkExisting(const TQString&aName,TQListViewItem*it=0);
bool commitchanges()const{return m_commitit;}
void setCommitchanges(bool how){m_commitit=how;}
- void addCallback(QObject*);
+ void addCallback(TQObject*);
public slots:
- virtual void displayList(const svn::PathPropertiesMapListPtr&,bool,const QString&);
+ virtual void displayList(const svn::PathPropertiesMapListPtr&,bool,const TQString&);
virtual void clear();
protected slots:
- virtual void slotItemRenamed(QListViewItem*item,const QString & str,int col );
+ virtual void slotItemRenamed(TQListViewItem*item,const TQString & str,int col );
signals:
- void sigSetProperty(const svn::PropertiesMap&,const QValueList<QString>&,const QString&);
+ void sigSetProperty(const svn::PropertiesMap&,const TQValueList<TQString>&,const TQString&);
protected:
bool m_commitit;
- QString m_current;
+ TQString m_current;
protected slots:
- virtual void slotContextMenuRequested(QListViewItem *, const QPoint &, int);
+ virtual void slotContextMenuRequested(TQListViewItem *, const TQPoint &, int);
};
#endif