summaryrefslogtreecommitdiffstats
path: root/src/svnqt/status.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/svnqt/status.hpp')
-rw-r--r--src/svnqt/status.hpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/svnqt/status.hpp b/src/svnqt/status.hpp
index 3b6e03e..281f905 100644
--- a/src/svnqt/status.hpp
+++ b/src/svnqt/status.hpp
@@ -53,13 +53,13 @@ namespace svn
*/
class Status_private;
- class SVNTQT_EXPORT tqStatus
+ class SVNTQT_EXPORT Status
{
public:
/**
* copy constructor
*/
- tqStatus (const tqStatus & src);
+ Status (const Status & src);
/**
* default constructor
@@ -67,27 +67,27 @@ namespace svn
* @param path path for this status entry
* @param status status entry
*/
- tqStatus (const TQString&path=TQString(), svn_wc_status2_t * status = NULL);
+ Status (const TQString&path=TQString(), svn_wc_status2_t * status = NULL);
/**
* default constructor
*
* @param path path for this status entry
* @param status status entry
*/
- tqStatus (const char*path, svn_wc_status2_t * status = NULL);
+ Status (const char*path, svn_wc_status2_t * status = NULL);
/**
* converting constructor
*/
- tqStatus(const TQString&path,const DirEntryPtr&src);
+ Status(const TQString&path,const DirEntryPtr&src);
/**
* converting constructor
*/
- tqStatus(const TQString&path,const InfoEntry&src);
+ Status(const TQString&path,const InfoEntry&src);
/**
* destructor
*/
- virtual ~tqStatus ();
+ virtual ~Status ();
/**
* @return path of status entry
@@ -105,13 +105,13 @@ namespace svn
* @return file status property enum of the "textual" component.
*/
svn_wc_status_kind
- texttqStatus () const;
+ textStatus () const;
/**
* @return file status property enum of the "property" component.
*/
svn_wc_status_kind
- proptqStatus () const;
+ propStatus () const;
/**
* @retval TRUE if under version control
@@ -152,28 +152,28 @@ namespace svn
* @return the entry's text status in the repository
*/
svn_wc_status_kind
- reposTexttqStatus () const;
+ reposTextStatus () const;
/**
* @return the entry's prop status in the repository
*/
svn_wc_status_kind
- reposProptqStatus () const;
+ reposPropStatus () const;
const LockEntry&
lockEntry () const;
bool
- validRepostqStatus()const;
+ validReposStatus()const;
bool
- validLocaltqStatus()const;
+ validLocalStatus()const;
/**
* assignment operator
*/
- tqStatus &
- operator = (const tqStatus &);
+ Status &
+ operator = (const Status &);
private:
Status_private*m_Data;
};