From kdevelop-bugs Thu Dec 23 16:56:38 2004 From: kdevelop-bugs-admin () barney ! cs ! uni-potsdam ! de Date: Thu, 23 Dec 2004 16:56:38 +0000 To: kdevelop-bugs Subject: [Bug 95540] mixed case project names create wrong folder Message-Id: <20041223165638.22131.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kdevelop-bugs&m=118306933206090 ------- 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=95540 jens.dagerbo swipnet se changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From jens.dagerbo swipnet se 2004-12-23 17:56 ------- CVS commit by dagerbo: Make sure to lowercase the project name when feeding it to the VCS plugin. BUG: 95540 M +1 -1 appwizarddlg.h 1.34 --- kdevelop/parts/appwizard/appwizarddlg.h #1.33:1.34 @ -119,5 +119,5 @ public: AppWizardDialog( AppWizardPart *part, QWidget *parent=0, const char *name=0 ); ~AppWizardDialog(); - QString getProjectName() { return appname_edit->text(); } + QString getProjectName() { return appname_edit->text().lower(); } QString getProjectLocation() { return finalLoc_label->text(); }