summaryrefslogtreecommitdiffstats
path: root/src/svnqt/log_entry.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:34:08 -0600
commitbb7be2361770a435b3e2e8ae2ac4250bf9810bb4 (patch)
tree3dc3697661e497b5486191491da2ed4cc751b7fc /src/svnqt/log_entry.cpp
parent40e169496670c40004f7386a23f7c03d9aeac3e0 (diff)
downloadtdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.tar.gz
tdesvn-bb7be2361770a435b3e2e8ae2ac4250bf9810bb4.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/svnqt/log_entry.cpp')
-rw-r--r--src/svnqt/log_entry.cpp8
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_)