diff options
author | Michele Calgaro <[email protected]> | 2015-06-17 15:33:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2015-06-17 15:33:10 +0900 |
commit | e044c5463329652f28565dfc7de24ef8b0edaa6f (patch) | |
tree | e1bf1de8f39cd95e31dc43474af51ba7b891af48 /buildtools/ant | |
parent | 065693194f81b16c3d6deb7fb70a07ae0e884eb6 (diff) | |
download | tdevelop-e044c5463329652f28565dfc7de24ef8b0edaa6f.tar.gz tdevelop-e044c5463329652f28565dfc7de24ef8b0edaa6f.zip |
Revert to .kdevelop files with <kdevelop> entity name for project files.
This resolves bug 2308.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'buildtools/ant')
-rw-r--r-- | buildtools/ant/antprojectpart.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildtools/ant/antprojectpart.cpp b/buildtools/ant/antprojectpart.cpp index 902055ec..a9e5a2d4 100644 --- a/buildtools/ant/antprojectpart.cpp +++ b/buildtools/ant/antprojectpart.cpp @@ -97,7 +97,7 @@ void AntProjectPart::openProject(const TQString &dirName, const TQString &projec fillMenu(); - TQFile f(dirName + "/" + projectName.lower() + ".tdevelop" + ".filelist"); + TQFile f(dirName + "/" + projectName.lower() + ".kdevelop" + ".filelist"); if (f.open(IO_ReadOnly)) { TQTextStream stream(&f); @@ -164,7 +164,7 @@ void AntProjectPart::closeProject() m_antOptions = AntOptions(); - TQFile f(m_projectDirectory + "/" + m_projectName.lower() + ".tdevelop" + ".filelist"); + TQFile f(m_projectDirectory + "/" + m_projectName.lower() + ".kdevelop" + ".filelist"); if (!f.open(IO_WriteOnly)) return; |