~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to parts/filecreate/filecreate_part.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2006-10-24 11:59:24 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061024115924-e5gecawlge1xhk75
Tags: 4:3.3.5-1
* New upstream release.
  + Contains up-to-date KDE admin dir in application templates.
* Remove patches included upstream:
  + 05_support_autoconf26.diff
  + 06_xim_crash_caused_by_qt.diff
  + 07_documentation_plugins_path.diff
* Fix not-binnmuable-any-depends-all kdevelop -> kdevelop-data.

Show diffs side-by-side

added added

removed removed

Lines of Context:
451
451
 
452
452
  QString fullPath = selectedURL.path();
453
453
  // add appropriate extension, if not already there
454
 
  if (!ext.isNull() & ext!="" & !fullPath.endsWith("." + ext)) fullPath+="." + ext;
 
454
  if ( !ext.isEmpty() && !fullPath.endsWith("." + ext)) fullPath+="." + ext;
455
455
 
456
456
  QString filename = URLUtil::filename(fullPath);
457
457
  kdDebug(9034) << "full path = " << fullPath << endl;