Skip to content

Commit

Permalink
Fix compiler error.
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaum committed Aug 4, 2013
1 parent 1f3c6a8 commit 0490614
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/kdevplugins/ktlproject/ktlprojectmanager.cpp
Expand Up @@ -360,6 +360,12 @@ bool KTLProjectManager::moveFilesAndFolders(const QList<KDevelop::ProjectBaseIte
}
#endif

bool KTLProjectManager::copyFilesAndFolders(const KUrl::List& items, KDevelop::ProjectFolderItem* newParent){
// FIXME implement me
// always fail to move, because this functionality is not implemented
return false;
}

bool KTLProjectManager::renameFile( ProjectFileItem* oldFile, const KUrl& newFile )
{
KUrl oldFileUrl = oldFile->url();
Expand Down
2 changes: 2 additions & 0 deletions src/kdevplugins/ktlproject/ktlprojectmanager.h
Expand Up @@ -99,6 +99,8 @@ class KTLProjectManager : public IPlugin, public IProjectFileManager
virtual bool moveFilesAndFolders(const QList<KDevelop::ProjectBaseItem*>&, KDevelop::ProjectFolderItem*);
#endif

virtual bool copyFilesAndFolders(const KUrl::List &, KDevelop::ProjectFolderItem*);

/**
*
*/
Expand Down

0 comments on commit 0490614

Please sign in to comment.