summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/fronthelpers/propertyitem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnfrontend/fronthelpers/propertyitem.h')
-rw-r--r--src/svnfrontend/fronthelpers/propertyitem.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/svnfrontend/fronthelpers/propertyitem.h b/src/svnfrontend/fronthelpers/propertyitem.h
index c630c7c..c72af05 100644
--- a/src/svnfrontend/fronthelpers/propertyitem.h
+++ b/src/svnfrontend/fronthelpers/propertyitem.h
@@ -13,14 +13,14 @@ class PropertyListViewItem:public KListViewItem
public:
static const int _RTTI_ = 1001;
- PropertyListViewItem(KListView *parent,const QString&,const QString&);
- PropertyListViewItem(KListView *parent);
+ PropertyListViewItem(KListView *tqparent,const TQString&,const TQString&);
+ PropertyListViewItem(KListView *tqparent);
virtual ~PropertyListViewItem();
- const QString&startName()const{return m_startName;}
- const QString&startValue()const{return m_startValue;}
- const QString&currentName()const{return m_currentName;}
- const QString&currentValue()const{return m_currentValue;}
+ const TQString&startName()const{return m_startName;}
+ const TQString&startValue()const{return m_startValue;}
+ const TQString&currentName()const{return m_currentName;}
+ const TQString&currentValue()const{return m_currentValue;}
void checkValue();
void checkName();
@@ -39,10 +39,10 @@ class PropertyListViewItem:public KListViewItem
* This moment it just checks for "svn:special"
* \return true if protected property otherwise false
*/
- static bool protected_Property(const QString&);
+ static bool protected_Property(const TQString&);
protected:
- QString m_currentName,m_startName,m_currentValue,m_startValue;
+ TQString m_currentName,m_startName,m_currentValue,m_startValue;
bool m_deleted;
};