forked from qt-creator/qt-creator
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user