Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P3: Somewhat important
-
Resolution: Done
-
Affects Version/s: Qt Creator 4.11.0, Qt Creator 4.14.0-beta1
-
Fix Version/s: Qt Creator 4.14.0-beta1
-
Component/s: C/C++/Obj-C++ Support
-
Labels:
-
Environment:Ubuntu 20.04 LTS 64 bit
Project configured with Qt 5.14.1, Qt 5.15.1
-
Commits:cc4bd3b7388f889d9fc5a8a86fba9f19c3f14c4c (qt-creator/qt-creator/4.14)
Description
- Create a new Qt Widgets Application project using the wizard.
- In main.cpp, define a class:
class MyClass{};
- Inside the main function, use that class:
MyClass mc; int so = sizeof(mc); ++so;
- Hover the mouse over "so".
You'll see a tooltip with an "F1" icon. - Press F1 key.
Creator will inform you that no documentation is available. - Hover the mouse over "mc".
You'll see a tooltip with an "F1" icon. - Press F1 key.
Creator will inform you that no documentation is available.
Creator should show the "F1" icon only when pressing F1 will be able to show some documentation.