QmlJS: Move Q_DECLARE_TR_FUNCTIONS to the start of class declarations.

The documentation requires having it there.
This commit is contained in:
Christian Kamm
2010-05-19 13:42:56 +02:00
parent 4e498caf30
commit da6b372575
3 changed files with 6 additions and 6 deletions

View File

@@ -42,14 +42,14 @@ namespace QmlJS {
class QMLJS_EXPORT Check: protected AST::Visitor
{
Q_DECLARE_TR_FUNCTIONS(QmlJS::Check)
public:
Check(Document::Ptr doc, const Snapshot &snapshot, const QStringList &importPaths);
virtual ~Check();
QList<DiagnosticMessage> operator()();
Q_DECLARE_TR_FUNCTIONS(QmlJS::Check)
protected:
virtual bool visit(AST::UiProgram *ast);
virtual bool visit(AST::UiObjectDefinition *ast);