Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable/delete all breakpoint in Qt Creator

Tags:

c++

qt

qt-creator

Is there a way to disable all breakpoints in Qt Creator? If there is not, Is there a way to delete all breakpoints? My Qt version is 4.7 and my OS is Ubuntu 12.04.

like image 418
eliasetm Avatar asked Jan 21 '19 07:01

eliasetm


People also ask

How do you delete all breakpoints in Visual Studio 2017?

To clear all breakpoints in the applicationFrom the Debug menu, choose Clear All Breakpoints (CTRL+SHIFT+F9).


1 Answers

Go to the debugger pane at the bottom of the IDE. In the bottom right corner, there will be a breakpoint tab. Click this and you should see all breakpoints displayed. Now you can CTRL + A and right click and delete all breakpoints.

(ref.)

like image 92
Mayur Avatar answered Sep 21 '22 10:09

Mayur