diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-16 13:53:18 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-16 13:53:18 -0600 |
commit | 2ecab1a194b0dc551b478820e1aaa3b8713354cc (patch) | |
tree | ae4df71ed26f3dc2dd605970d8d455165a1c8ab3 /parts/appwizard/importdlg.cpp | |
parent | 549fec618f0b15c9316fc0a5ebe93c2829bc0b1b (diff) | |
download | tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.tar.gz tdevelop-2ecab1a194b0dc551b478820e1aaa3b8713354cc.zip |
Additional renaming of kde to tde
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(); } |