summaryrefslogtreecommitdiffstats
path: root/drkonqi/debugger.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-12-28 22:08:16 +0900
committerMichele Calgaro <[email protected]>2024-12-28 22:08:16 +0900
commit2e45e9cc1dcba9a93fe4457950d71efaf3d1f721 (patch)
tree207353ee67baa71abe05dc39c7518d027c2c574c /drkonqi/debugger.cpp
parent3df12e580bf4a71991a80424b5375157f6bce3db (diff)
downloadtdebase-2e45e9cc1dcba9a93fe4457950d71efaf3d1f721.tar.gz
tdebase-2e45e9cc1dcba9a93fe4457950d71efaf3d1f721.zip
Use tdecrash.h
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'drkonqi/debugger.cpp')
-rw-r--r--drkonqi/debugger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/drkonqi/debugger.cpp b/drkonqi/debugger.cpp
index 2de6fb3f8..fa959b4cc 100644
--- a/drkonqi/debugger.cpp
+++ b/drkonqi/debugger.cpp
@@ -95,7 +95,7 @@ void KrashDebugger :: slotSave()
{
if (m_krashconf->safeMode())
{
- KTempFile tf(TQString::fromAscii("/tmp/"), TQString::fromAscii(".kcrash"), 0600);
+ KTempFile tf(TQString::fromAscii("/tmp/"), TQString::fromAscii(".tdecrash"), 0600);
if (!tf.status())
{
*tf.textStream() << m_backtrace->text();
@@ -109,7 +109,7 @@ void KrashDebugger :: slotSave()
}
else
{
- TQString defname = m_krashconf->execName() + TQString::fromLatin1( ".kcrash" );
+ TQString defname = m_krashconf->execName() + TQString::fromLatin1( ".tdecrash" );
if( defname.contains( '/' ))
defname = defname.mid( defname.findRev( '/' ) + 1 );
TQString filename = KFileDialog::getSaveFileName(defname, TQString::null, this, i18n("Select Filename"));