Summary: | crash when selecting "Project options" in the "Project" menu | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Eugen D <eugen> |
Component: | Build tools: ANT | Assignee: | KDevelop Developers <kdevelop-devel> |
Status: | RESOLVED FIXED | ||
Severity: | crash | ||
Priority: | NOR | ||
Version: | 3.0.0 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Eugen D
2004-02-11 15:11:52 UTC
Confirmed. QTableHeader mindlessly blows up when we attempt to stretch a row that doesn't exist. I have no idea why we want to do any stretching anyway.. CVS commit by dagerbo: Fix bug #74955 CCMAIL: 74955-done@bugs.kde.org M +0 -1 antprojectpart.cpp 1.25 --- kdevelop/buildtools/ant/antprojectpart.cpp #1.24:1.25 @@ -482,5 +482,4 @@ void AntProjectPart::projectConfigWidget m_antOptionsWidget->Properties->setNumRows(m_antOptions.m_properties.count()); m_antOptionsWidget->Properties->setNumCols(2); - m_antOptionsWidget->Properties->setRowStretchable(1,true); QMap<QString,QString>::Iterator it; KDevelop did not crash anymore after installing ant... :) But of course it should not crash when an optional program is not present. |