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-24 10:54:58 +0900 |
commit | 681b905a28a095d19cb2f8e50236d5e8d3ce716f (patch) | |
tree | 755420035ad10759f3297418124645bb79960392 /konq-plugins/crashes | |
parent | 98fa633bd57994fc767906639beb41a7c598f7d1 (diff) | |
download | tdeaddons-681b905a28a095d19cb2f8e50236d5e8d3ce716f.tar.gz tdeaddons-681b905a28a095d19cb2f8e50236d5e8d3ce716f.zip |
Replaced various '#define' with actual strings - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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() { |