QmlJSInspector: Fix whitespace issues

Change-Id: I5dba3ffcad7cdcd45dc6e2e81dce13fc181e27cf
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
Kai Koehne
2012-04-16 17:09:27 +02:00
parent c46221ee9a
commit 684b37fece
9 changed files with 104 additions and 104 deletions

View File

@@ -413,7 +413,7 @@ void InspectorUi::updateEngineList()
{ {
QList<QmlDebugEngineReference> engines = m_clientProxy->engines(); QList<QmlDebugEngineReference> engines = m_clientProxy->engines();
//#warning update the QML engines combo //#warning update the QML engines combo
if (engines.isEmpty()) if (engines.isEmpty())
qWarning("qmldebugger: no engines found!"); qWarning("qmldebugger: no engines found!");

View File

@@ -68,7 +68,7 @@ namespace Internal {
*/ */
class MapObjectWithDebugReference : public Visitor class MapObjectWithDebugReference : public Visitor
{ {
public: public:
typedef QList<int> DebugIdList; typedef QList<int> DebugIdList;
MapObjectWithDebugReference() : activated(0) {} MapObjectWithDebugReference() : activated(0) {}
virtual void endVisit(UiObjectDefinition *ast) ; virtual void endVisit(UiObjectDefinition *ast) ;
@@ -81,10 +81,10 @@ class MapObjectWithDebugReference : public Visitor
QHash<UiObjectMember *, DebugIdList> result; QHash<UiObjectMember *, DebugIdList> result;
QSet<UiObjectMember *> lookupObjects; QSet<UiObjectMember *> lookupObjects;
private: private:
void process(UiObjectMember *ast); void process(UiObjectMember *ast);
void process(UiObjectBinding *ast); void process(UiObjectBinding *ast);
private: private:
int activated; int activated;
}; };

View File

@@ -44,11 +44,11 @@
QT_FORWARD_DECLARE_CLASS(QTextDocument) QT_FORWARD_DECLARE_CLASS(QTextDocument)
namespace Core { namespace Core {
class IEditor; class IEditor;
} }
namespace QmlJS { namespace QmlJS {
class ModelManagerInterface; class ModelManagerInterface;
} }
namespace QmlJSInspector { namespace QmlJSInspector {

View File

@@ -60,7 +60,7 @@ namespace Internal {
class PropertyEditDelegate : public QItemDelegate class PropertyEditDelegate : public QItemDelegate
{ {
public: public:
explicit PropertyEditDelegate(QObject *parent=0) : QItemDelegate(parent), explicit PropertyEditDelegate(QObject *parent=0) : QItemDelegate(parent),
m_treeWidget(dynamic_cast<QmlJSPropertyInspector *>(parent)) {} m_treeWidget(dynamic_cast<QmlJSPropertyInspector *>(parent)) {}