code style

This commit is contained in:
hjk
2011-04-14 11:21:32 +02:00
parent c06ca69aa1
commit 880c8d8426

View File

@@ -43,6 +43,7 @@ namespace Qt4ProjectManager {
namespace Internal { namespace Internal {
class QtQuickApp; class QtQuickApp;
struct QmlCppPlugin;
struct QmlModule struct QmlModule
{ {
@@ -64,7 +65,7 @@ struct QmlModule
const QFileInfo qmldir; // 'qmldir' file. const QFileInfo qmldir; // 'qmldir' file.
const bool isExternal; // Either external or inside a source paths const bool isExternal; // Either external or inside a source paths
const QtQuickApp *qtQuickApp; const QtQuickApp *qtQuickApp;
QHash<QString, struct QmlCppPlugin*> cppPlugins; // Just as info. No ownership. QHash<QString, QmlCppPlugin *> cppPlugins; // Just as info. No ownership.
}; };
struct QmlCppPlugin struct QmlCppPlugin
@@ -152,8 +153,8 @@ private:
QFileInfo m_mainQmlFile; QFileInfo m_mainQmlFile;
Mode m_mainQmlMode; Mode m_mainQmlMode;
QStringList m_importPaths; QStringList m_importPaths;
QList <QmlModule*> m_modules; QList<QmlModule *> m_modules;
QList <QmlCppPlugin*> m_cppPlugins; QList<QmlCppPlugin *> m_cppPlugins;
}; };
} // namespace Internal } // namespace Internal