summaryrefslogtreecommitdiff
path: root/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@digia.com>2013-08-12 17:58:31 +0200
committerThomas Hartmann <Thomas.Hartmann@digia.com>2013-08-12 18:01:31 +0200
commit3353b0f253ec6358236a8e95003363aaf9685c3e (patch)
tree9ad6e4baf83e05f1c5eaa5522b79b99ef4fbc5cb /src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h
parent13033734a1b1bf88d2f33b5391360a37e9afc6d4 (diff)
downloadqt-creator-3353b0f253ec6358236a8e95003363aaf9685c3e.tar.gz
QmlDesigner: refactoring PropertyEditor
* Renaming PropertyEditor to PropertyEditorView * Adding PropertyEditorWidget * Renaming DeclarativeWidgetView to QuickPropertyEditorView * Renaming NodeType to PropertyEditorQmlBackend * Moving PropertyEditorQmlBackend into separate file * Cleaning up interface of PropertyEditorQmlBackend Change-Id: I1291feb5880b01d1e2bac09f4eb1e0181ff04d5c Reviewed-by: Marco Bubke <marco.bubke@digia.com>
Diffstat (limited to 'src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h')
-rw-r--r--src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h
index ef54a8f810..5eb8c1d3cf 100644
--- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h
+++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditortransaction.h
@@ -30,7 +30,7 @@
#ifndef PROPERTYEDITORTRANSACTION_H
#define PROPERTYEDITORTRANSACTION_H
-#include "propertyeditor.h"
+#include "propertyeditorview.h"
namespace QmlDesigner {
@@ -38,7 +38,7 @@ class PropertyEditorTransaction : public QObject
{
Q_OBJECT
public:
- PropertyEditorTransaction(QmlDesigner::PropertyEditor *propertyEditor);
+ PropertyEditorTransaction(QmlDesigner::PropertyEditorView *propertyEditor);
public slots:
void start();
@@ -47,7 +47,7 @@ protected:
void timerEvent(QTimerEvent *event);
private:
- QmlDesigner::PropertyEditor *m_propertyEditor;
+ QmlDesigner::PropertyEditorView *m_propertyEditor;
QmlDesigner::RewriterTransaction m_rewriterTransaction;
int m_timerId;
};