From bb7be2361770a435b3e2e8ae2ac4250bf9810bb4 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 15 Dec 2011 15:34:08 -0600 Subject: Rename a number of old tq methods that are no longer tq specific --- src/svnqt/status.hpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/svnqt/status.hpp') 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; }; -- cgit v1.2.1