This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 251289 - 2 or more "The Reverse Debugging Option should be switched on!" windows appear after Pop To Here
Summary: 2 or more "The Reverse Debugging Option should be switched on!" windows appea...
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 8.1
Hardware: All All
: P3 normal (vote)
Assignee: henk89
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-03-19 12:02 UTC by soldatov
Modified: 2015-03-25 03:22 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description soldatov 2015-03-19 12:02:17 UTC
Code:

#include <stdio.h>

void A();
void B();
void C();

void A() {
    B();
    puts("A");
}
void B() {
    C();
    puts("B");
}
void C() {
    puts("C"); // set line breakpoint in this line
}
int main(int argc, char** argv) {
    A();
    return 0;
}

Scenario:
- Set line breakpoint in "void C()"
- Start Debugger
- Open Call Stack tab
- Call context menu on main() and select Pop To Here
==> "The Reverse Debugging Option should be switched on!" window appears
- Press OK
==> I see "The Reverse Debugging Option should be switched on!" window again
- Press OK
==> I see this warning again
Comment 1 henk89 2015-03-21 17:36:17 UTC
Fixed in:
http://hg.netbeans.org/cnd-main/rev/170e929d3b83
Comment 2 Quality Engineering 2015-03-25 03:22:31 UTC
Integrated into 'main-silver', will be available in build *201503250001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/170e929d3b83
User: Nikolay Koldunov <henk89@netbeans.org>
Log: Fixed #251289 - 2 or more "The Reverse Debugging Option should be switched on!" windows appear after Pop To Here