diff options
Diffstat (limited to 'parts/appwizard/importdlg.cpp')
-rw-r--r-- | parts/appwizard/importdlg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/parts/appwizard/importdlg.cpp b/parts/appwizard/importdlg.cpp index 4fc8a6e3..82662921 100644 --- a/parts/appwizard/importdlg.cpp +++ b/parts/appwizard/importdlg.cpp @@ -1,6 +1,6 @@ /*************************************************************************** * Copyright (C) 2001-2002 by Bernd Gehrmann * - * bernd@kdevelop.org * + * bernd@tdevelop.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -133,7 +133,7 @@ void ImportDialog::accept() TQFileInfo finfo(importNames[project_combo->currentItem()]); TQDir importdir(finfo.dir()); importdir.cdUp(); - TQFile src(importdir.filePath("importfiles/" + finfo.fileName() + ".kdevelop")); + TQFile src(importdir.filePath("importfiles/" + finfo.fileName() + ".tdevelop")); kdDebug(9010) << "Import template " << src.name() << endl; if (!src.open(IO_ReadOnly)) { KMessageBox::sorry(this, i18n("Cannot open project template.")); @@ -188,7 +188,7 @@ void ImportDialog::accept() // write the dom back - TQFile dest(dir.filePath(projectName + ".kdevelop")); + TQFile dest(dir.filePath(projectName + ".tdevelop")); if (!dest.open(IO_WriteOnly)) { KMessageBox::sorry(this, i18n("Cannot write the project file.")); return; @@ -213,9 +213,9 @@ void ImportDialog::accept() // dest.close(); // src.close(); - m_part->core()->openProject(dir.filePath(projectName + ".kdevelop")); + m_part->core()->openProject(dir.filePath(projectName + ".tdevelop")); - kdDebug(9010) << "OPENING PROJECT: " << dir.filePath(projectName + ".kdevelop") << endl; + kdDebug(9010) << "OPENING PROJECT: " << dir.filePath(projectName + ".tdevelop") << endl; TQDialog::accept(); } |