Summary: | crash after selecting variable | ||
---|---|---|---|
Product: | [Applications] kcron | Reporter: | Martin Tentij <mtentij> |
Component: | general | Assignee: | Gary Meyer <gary> |
Status: | RESOLVED FIXED | ||
Severity: | crash | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | openSUSE | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Martin Tentij
2005-06-05 20:15:43 UTC
Same results when using kcron 3.4.1 running in KDE 3.4.1 installed from binary packages in Debian. Steps to reproduce: 1. Launch kcron 2. Expand "(System Crontab)" by clicking in the '+' sign. 3.a. Click in the PATH variable or 3.b. Click on the last task and go down with the arrow key Thanks, G Analogous problem with RedHat FC4 - you cannot click on the variable because kcron crashes. Please, help! -Kiril Confirmed on 3.4.0 on Ubuntu Confirmed on 3.4.3 on Kubuntu Confirmed with 3.4.92 (svn from 12/11/05). qt-copy from same date. Gentoo Linux, gcc 3.4.4 Backtrace, if its any use: Using host libthread_db library "/lib/libthread_db.so.1". `system-supplied DSO at 0xffffe000' has disappeared; keeping its symbols. [Thread debugging using libthread_db enabled] [New Thread -1228384592 (LWP 24631)] [KCrash handler] #4 0x080661e2 in KTView::slotSetCurrent () #5 0x08066408 in KTView::qt_invoke () #6 0xb72e2600 in QObject::activate_signal () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #7 0xb7572733 in QListView::selectionChanged () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #8 0xb7399132 in QListView::setCurrentItem () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #9 0xb739b11b in QListView::contentsMousePressEventEx () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #10 0xb739b5a6 in QListView::contentsMousePressEvent () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #11 0xb73b9af0 in QScrollView::viewportMousePressEvent () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #12 0xb73bb829 in QScrollView::eventFilter () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #13 0xb7394e14 in QListView::eventFilter () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #14 0xb72e0673 in QObject::activate_filters () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #15 0xb72e06d1 in QObject::event () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #16 0xb730d075 in QWidget::event () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #17 0xb72978a5 in QApplication::internalNotify () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #18 0xb7297c1b in QApplication::notify () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #19 0xb7808b5b in KApplication::notify () from /usr/kde/kde/lib/libkdecore.so.4 #20 0xb7249adb in QETWidget::translateMouseEvent () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #21 0xb7248834 in QApplication::x11ProcessEvent () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #22 0xb7256fc7 in QEventLoop::processEvents () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #23 0xb72a8340 in QEventLoop::enterLoop () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #24 0xb72a82a5 in QEventLoop::exec () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #25 0xb7296d06 in QApplication::exec () from /usr/qt/qt-copy/lib/libqt-mt.so.3 #26 0x0807141a in main () Following patch fixes this for me. Patch is against SVN revision 487774, 3.5 branch Index: kcron/ktview.cpp =================================================================== --- kcron/ktview.cpp (revision4) +++ kcron/ktview.cpp (working copy) @@ -537,7 +537,7 @@ emit(enableModificationButtons(true)); emit(enableRunNow(false)); - emit(enableEnabled(currentCTTask->enabled)); + emit(enableEnabled(currentCTVariable->enabled)); } else if (parent->text(0) == KTListTasks::getDescription()) SVN commit 498051 by jamesots: Patch from Charles Thorpe to fix bug 106853: crash after selecting variable. BUG: 106853 M +1 -1 ktview.cpp --- branches/KDE/3.5/kdeadmin/kcron/ktview.cpp #498050:498051 @@ -537,7 +537,7 @@ emit(enableModificationButtons(true)); emit(enableRunNow(false)); - emit(enableEnabled(currentCTTask->enabled)); + emit(enableEnabled(currentCTVariable->enabled)); } else if (parent->text(0) == KTListTasks::getDescription()) |