UicCodeModelSupport: Make the code not so eager to run uic processes

Instead mostly postpone it until the contents are needed.

Task-number: QTCREATORBUG-9149

Change-Id: I83167537e97fbd965531d990c8073409ff7b0b32
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
Daniel Teske
2013-03-21 19:24:34 +01:00
parent 3aa424ca64
commit 3abe2a72ea
5 changed files with 47 additions and 15 deletions

View File

@@ -33,6 +33,7 @@
#include "cpptools_global.h"
#include <QString>
#include <QObject>
namespace CPlusPlus {
class CppModelManagerInterface;
@@ -40,8 +41,9 @@ class CppModelManagerInterface;
namespace CppTools {
class CPPTOOLS_EXPORT AbstractEditorSupport
class CPPTOOLS_EXPORT AbstractEditorSupport : public QObject
{
Q_OBJECT
public:
explicit AbstractEditorSupport(CPlusPlus::CppModelManagerInterface *modelmanager);
virtual ~AbstractEditorSupport();