[Bug 71708] environment variable editor dialog has wrong parent
Matt Rogers
mattr at kde.org
Tue Mar 1 18:12:08 UTC 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=71708
mattr kde org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mattr kde org 2005-03-01 18:10 -------
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 )
More information about the KDevelop-devel
mailing list