[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2019-01-09 Thread Kevin Funk
https://bugs.kde.org/show_bug.cgi?id=402617 Kevin Funk changed: What|Removed |Added Resolution|--- |FIXED Version Fixed In|

[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2019-01-09 Thread Kevin Funk
https://bugs.kde.org/show_bug.cgi?id=402617 --- Comment #8 from Kevin Funk --- GrepOutputView::rowsRemoved() should be safe; as that's directly connected to a signal from the model which is currently active (afaics). Added an assert. -- You are receiving this mail because: You are watching all

[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2019-01-01 Thread Christoph Roick
https://bugs.kde.org/show_bug.cgi?id=402617 Christoph Roick changed: What|Removed |Added Status|REPORTED|CONFIRMED Ever confirmed|0

[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2018-12-28 Thread frmdstryr
https://bugs.kde.org/show_bug.cgi?id=402617 --- Comment #6 from frmdstryr --- Yep that worked. void GrepOutputView::updateScrollArea() { if(!model()) { return; } for (int col = 0; col < model()->columnCount(); ++col) resultsTreeView->resizeColumnToContents(col); } -

[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2018-12-28 Thread RJVB
https://bugs.kde.org/show_bug.cgi?id=402617 --- Comment #5 from RJVB --- The simplest assumption is that `model()` returns NULL and that a check against that is required as is done in other locations too. It's also conceivable (but less likely) that cancelling the search invalidates the resultsTr

[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2018-12-28 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=402617 --- Comment #4 from frmdst...@protonmail.com --- With kdevplatform53-libs-dbgsym installed Thread 1 (Thread 0x7f5a244f8bc0 (LWP 29996)): [KCrash Handler] #6 0x7f59c3b7bd17 in GrepOutputView::updateScrollArea() (this=0x556912f77e20) at ./plugins/gre

[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2018-12-27 Thread RJVB
https://bugs.kde.org/show_bug.cgi?id=402617 RJVB changed: What|Removed |Added CC||rjvber...@gmail.com --- Comment #3 from RJVB --- You sh

[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2018-12-27 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=402617 --- Comment #2 from frmdst...@protonmail.com --- Yes, that sounds right. I'm able to reproduce it so hopefully this helps. I have 4 projects open and it only occurs if I search and cancel on the 2nd, 3rd, and 4th projects, but not the first project. W

[kdevelop] [Bug 402617] Crash when cancelling "Find in files" during collection stage

2018-12-27 Thread Francis Herne
https://bugs.kde.org/show_bug.cgi?id=402617 Francis Herne changed: What|Removed |Added CC||m...@flherne.uk --- Comment #1 from Francis Her