diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:15:16 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:15:16 -0600 |
commit | d6609da6b8c963fc19b622ab37f38e65df4e0a29 (patch) | |
tree | 66b2ac7b12897c16ac5226da82c451c04994f9cd /src/svnqt/log_entry.cpp | |
parent | 548395e018d377eaa8fede0fba271da8b6c49fc9 (diff) | |
download | tdesvn-d6609da6b8c963fc19b622ab37f38e65df4e0a29.tar.gz tdesvn-d6609da6b8c963fc19b622ab37f38e65df4e0a29.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/svnqt/log_entry.cpp')
-rw-r--r-- | src/svnqt/log_entry.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/svnqt/log_entry.cpp b/src/svnqt/log_entry.cpp index f641b17..720642d 100644 --- a/src/svnqt/log_entry.cpp +++ b/src/svnqt/log_entry.cpp @@ -96,8 +96,8 @@ namespace svn const char *message_; svn_compat_log_revprops_out(&author_, &date_, &message_, log_entry->revprops); - author = author_ == 0 ? TQString::tqfromLatin1("") : TQString::FROMUTF8(author_); - message = message_ == 0 ? TQString::tqfromLatin1("") : TQString::FROMUTF8(message_); + author = author_ == 0 ? TQString::fromLatin1("") : TQString::FROMUTF8(author_); + message = message_ == 0 ? TQString::fromLatin1("") : TQString::FROMUTF8(message_); setDate(date_); revision = log_entry->revision; if (log_entry->changed_paths) { @@ -125,8 +125,8 @@ namespace svn setDate(date_); revision = revision_; - author = author_ == 0 ? TQString::tqfromLatin1("") : TQString::FROMUTF8(author_); - message = message_ == 0 ? TQString::tqfromLatin1("") : TQString::FROMUTF8(message_); + author = author_ == 0 ? TQString::fromLatin1("") : TQString::FROMUTF8(author_); + message = message_ == 0 ? TQString::fromLatin1("") : TQString::FROMUTF8(message_); } void LogEntry::setDate(const char*date_) |