QmlDesigner: Don't mix functions and variables

Change-Id: I045a58c2567b644034a91c606fefc4ebe83ca6de
Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
Marco Bubke
2014-05-08 17:07:28 +02:00
parent f313dc6229
commit 44770d9e73

View File

@@ -59,8 +59,10 @@ signals:
void upButtonClicked();
void downButtonClicked();
private:
private: // functions
NavigatorView *navigatorView() const;
private: // variables
NavigatorTreeView *m_treeView;
QWeakPointer<NavigatorView> m_navigatorView;
};