Summary: | The width of the window is going more and more | ||
---|---|---|---|
Product: | [Developer tools] kdevplatform | Reporter: | deuce |
Component: | appwizard | Assignee: | KDevelop Developers <kdevelop-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.0.0 | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
deuce
2003-12-11 13:37:15 UTC
What is your KDevelop version? CVS commit by dagerbo: Not pretty, but it solves it. CCMAIL: 70118-done@bugs.kde.org M +3 -2 appwizarddlg.cpp 1.68 --- kdevelop/parts/appwizard/appwizarddlg.cpp #1.67:1.68 @@ -47,5 +47,5 @@ #include <kfile.h> #include <kapplication.h> - +#include <kstringhandler.h> #include <ktrader.h> #include <kparts/componentfactory.h> @@ -596,5 +596,6 @@ void AppWizardDialog::projectLocationCha // Jakob Simon-Gaarde: Got tired of the anoying bug with the appname/location confussion. // This version insures WYSIWYG and checks pathvalidity - finalLoc_label->setText(dest_edit->url() + (dest_edit->url().right(1)=="/" ? "":"/") + appname_edit->text().lower()); + QString temp( dest_edit->url() + (dest_edit->url().right(1)=="/" ? "":"/") + appname_edit->text().lower() ); + finalLoc_label->setText( KStringHandler::csqueeze( temp, 60 ) ); QDir qd(dest_edit->url()); QFileInfo fi(dest_edit->url() + "/" + appname_edit->text().lower()); |