------- 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=140904 apaku gmx de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From apaku gmx de 2007-01-30 17:23 ------- SVN commit 628598 by apaku: Add -I for outside include dirs if it doesn't exist yet BUG:140904 M +4 -0 subprojectoptionsdlg.cpp --- branches/kdevelop/3.4/buildtools/autotools/subprojectoptionsdlg.cpp #628597:628598 @ -301,7 +301,11 @ { QString dir = KFileDialog::getExistingDirectory(); if (!dir.isEmpty()) + { + if( !dir.startsWith( "-I" ) ) + dir = "-I"+dir; new QListViewItem(outsideinc_listview, dir); + } }