diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 10:00:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 10:00:09 -0600 |
commit | 3b34e5cf56262c9f54a3bcf02ee5ad93ca0fb05b (patch) | |
tree | 4405f233f4b0eee7f4ad3d265a5584c9ce681011 /cervisia/loginfo.cpp | |
parent | d6331f1b56eb6dca7a1950658b2932f208015da0 (diff) | |
download | tdesdk-3b34e5cf56262c9f54a3bcf02ee5ad93ca0fb05b.tar.gz tdesdk-3b34e5cf56262c9f54a3bcf02ee5ad93ca0fb05b.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit d6331f1b56eb6dca7a1950658b2932f208015da0.
Diffstat (limited to 'cervisia/loginfo.cpp')
-rw-r--r-- | cervisia/loginfo.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/cervisia/loginfo.cpp b/cervisia/loginfo.cpp index 8d4bd323..8e6464d0 100644 --- a/cervisia/loginfo.cpp +++ b/cervisia/loginfo.cpp @@ -19,7 +19,7 @@ #include "loginfo.h" -#include <stylesheet.h> +#include <tqstylesheet.h> #include <kglobal.h> #include <klocale.h> @@ -41,7 +41,7 @@ TQString TagInfo::toString(bool prefixWithType) const TQString text; if (prefixWithType) { - text += typeToString() + TQString::fromLatin1(": "); + text += typeToString() + TQString::tqfromLatin1(": "); } text += m_name; @@ -71,32 +71,32 @@ TQString TagInfo::typeToString() const TQString LogInfo::createToolTipText(bool showTime) const { - TQString text(TQString::fromLatin1("<nobr><b>")); + TQString text(TQString::tqfromLatin1("<nobr><b>")); text += TQStyleSheet::escape(m_revision); - text += TQString::fromLatin1("</b> "); + text += TQString::tqfromLatin1("</b> "); text += TQStyleSheet::escape(m_author); - text += TQString::fromLatin1(" <b>"); + text += TQString::tqfromLatin1(" <b>"); text += TQStyleSheet::escape(dateTimeToString(showTime)); - text += TQString::fromLatin1("</b></nobr>"); + text += TQString::tqfromLatin1("</b></nobr>"); if (!m_comment.isEmpty()) { - text += TQString::fromLatin1("<pre>"); + text += TQString::tqfromLatin1("<pre>"); text += TQStyleSheet::escape(m_comment); - text += TQString::fromLatin1("</pre>"); + text += TQString::tqfromLatin1("</pre>"); } if (!m_tags.isEmpty()) { - text += TQString::fromLatin1("<i>"); + text += TQString::tqfromLatin1("<i>"); for (TTagInfoSeq::const_iterator it = m_tags.begin(); it != m_tags.end(); ++it) { if (it != m_tags.begin() || m_comment.isEmpty()) - text += TQString::fromLatin1("<br>"); + text += TQString::tqfromLatin1("<br>"); text += TQStyleSheet::escape((*it).toString()); } - text += TQString::fromLatin1("</i>"); + text += TQString::tqfromLatin1("</i>"); } return text; |