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();
//#warning update the QML engines combo
//#warning update the QML engines combo
if (engines.isEmpty())
qWarning("qmldebugger: no engines found!");

View File

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

View File

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

View File

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