diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-24 10:54:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-25 01:06:54 +0900 |
commit | 94639370f5903b7fcb122e90f561d2df6e3b8c75 (patch) | |
tree | 1a8e089b68dfc049c031bf80967744bf1a9dd90c /konq-plugins/crashes | |
parent | 9e23a785039c8b2686207a1ecd4c0b718a4d6ef9 (diff) | |
download | tdeaddons-94639370f5903b7fcb122e90f561d2df6e3b8c75.tar.gz tdeaddons-94639370f5903b7fcb122e90f561d2df6e3b8c75.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 681b905a28a095d19cb2f8e50236d5e8d3ce716f)
Diffstat (limited to 'konq-plugins/crashes')
-rw-r--r-- | konq-plugins/crashes/crashesplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/konq-plugins/crashes/crashesplugin.cpp b/konq-plugins/crashes/crashesplugin.cpp index 1150d31..8314e95 100644 --- a/konq-plugins/crashes/crashesplugin.cpp +++ b/konq-plugins/crashes/crashesplugin.cpp @@ -139,12 +139,12 @@ void CrashesPlugin::slotAboutToShow() void CrashesPlugin::newBookmarkCallback( const TQString & text, const TQCString & url, const TQString & ) { - m_crashesList.prepend(tqMakePair(text,url)); + m_crashesList.prepend(qMakePair(text,url)); } void CrashesPlugin::endFolderCallback( ) { - m_crashesList.prepend(tqMakePair(TQString("-"),TQCString("-"))); + m_crashesList.prepend(qMakePair(TQString("-"),TQCString("-"))); } void CrashesPlugin::slotClearCrashes() { |