- 
    
Bug
 - 
    Resolution: Fixed
 - 
    
  Not Evaluated                     
     - 
    Qt Creator 3.3.0-rc1
 - 
    None
 - 
    Windows 7 64 bit
 
- 
        9934a9caf (13.0)
 
- Have a simple C++ program:
#include <iostream> using namespace std; struct X{ int x; void foo() { ++x; } }; int main() { X x; x.foo(); return 0; } - Set a breakpoint at "++x".
 - Run this in cdb.
 - When the execution stopped at the breakpoint, point your mouse at "++x".
You'll only see a tooltip from the code model:

 
Before https://codereview.qt-project.org/99651/ you got a tooltip from the debugger:

Please bring back this tooltip.