Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 4.9.0-beta1
-
None
-
1b0cba38dd6d5e72104354bb77ce4ba8f1f9d681 (qt-creator/qt-creator/4.9)
Description
The icons in outline/completion for static data members always indicate public access, even if they are protected or private.
The following snipped would show three times the same icon.
class Class { public: int static publicStaticVariable; protected: int static protectedStaticVariable; private: int static privateStaticVariable; };