Translated all comments found in header files (*.h) from French to English.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@1960 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavier
2012-11-09 21:09:24 +00:00
parent 75c37aa029
commit 160ccec733
117 changed files with 1710 additions and 1770 deletions

View File

@@ -22,21 +22,21 @@ class ElementsCollectionItem;
class ElementsCategory;
class MoveElementsHandler;
/**
Cette classe represente la description d'un mouvement d'elements.
Il peut s'agir d'un deplacement ou d'une copie. La source n'est pas
mentionnee
This class describes the evolution of an elements item move (actually
either move or copy), i.e. whether the source was deleted, whether the
target changed and to what path, etc.
*/
class MoveElementsDescription : public QObject {
Q_OBJECT
// constructeurs, destructeur
// constructors, destructor
public:
MoveElementsDescription(QObject * = 0);
virtual ~MoveElementsDescription();
private:
MoveElementsDescription(const MoveElementsDescription &);
// methodes
// methods
public:
bool isRecursive() const;
void setRecursive(bool);
@@ -62,7 +62,7 @@ class MoveElementsDescription : public QObject {
bool mustAbort() const;
void abort();
// attributs
// attributes
private:
bool recursive_;
MoveElementsHandler *handler_;