diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:57:02 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:57:02 -0600 |
commit | d55caffa62947ca831ae0c21aada3b55eec24027 (patch) | |
tree | 8a2a0ff56d7023011016a7e385f0f3b60ffea095 /lib/pilotMemo.cc | |
parent | 631a19d8c5c5f69dc0d941c1997806fb422c79a6 (diff) | |
download | kpilot-d55caffa62947ca831ae0c21aada3b55eec24027.tar.gz kpilot-d55caffa62947ca831ae0c21aada3b55eec24027.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 631a19d8c5c5f69dc0d941c1997806fb422c79a6.
Diffstat (limited to 'lib/pilotMemo.cc')
-rw-r--r-- | lib/pilotMemo.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pilotMemo.cc b/lib/pilotMemo.cc index c163e46..c5d4c09 100644 --- a/lib/pilotMemo.cc +++ b/lib/pilotMemo.cc @@ -79,11 +79,11 @@ TQString PilotMemo::getTextRepresentation(TQt::TextFormat richText) if (richText==TQt::RichText) { return i18n("<i>Title:</i> %1<br>\n<i>MemoText:</i><br>%2"). - arg(rtExpand(getTitle(), richText)).arg(rtExpand(text(), richText)); + tqarg(rtExpand(getTitle(), richText)).tqarg(rtExpand(text(), richText)); } else { - return i18n("Title: %1\nMemoText:\n%2").arg(getTitle()).arg(text()); + return i18n("Title: %1\nMemoText:\n%2").tqarg(getTitle()).tqarg(text()); } } |