Summary: | environment variable editor dialog has wrong parent | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | Jon Smirl <jonsmirl> |
Component: | general | Assignee: | KDevelop Developers <kdevelop-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | git master | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Jon Smirl
2004-01-03 00:42:18 UTC
CVS commit by mattr: Give the environment variables dialogs a parent so they can't get hidden behind other windows. BUG: 71708 Will backport to kdevelop 3.2.1 after the branch is reopened. M +2 -2 environmentvariableswidget.cpp 1.6.2.1 --- kdevelop/buildtools/lib/widgets/environmentvariableswidget.cpp #1.6:1.6.2.1 @@ -31,5 +31,5 @@ void EnvironmentVariablesWidget::addVarClicked() { - AddEnvvarDialog dlg; + AddEnvvarDialog dlg( this, "add env dialog" ) ; if (QListViewItem *Item = listview->selectedItem()) { @@ -46,5 +46,5 @@ void EnvironmentVariablesWidget::addVarC void EnvironmentVariablesWidget::editVarClicked() { - AddEnvvarDialog dlg; + AddEnvvarDialog dlg( this, "edit env dialog" ); QListViewItem *item = listview->selectedItem(); if ( !item ) |