Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. Quests about CDB in QTCreator
Forum Update on Monday, May 27th 2025

Quests about CDB in QTCreator

Scheduled Pinned Locked Moved Qt Creator and other tools
1 Posts 1 Posters 674 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • O Offline
    O Offline
    oiniya
    wrote on last edited by
    #1

    1, how to debug the last line in the function?
    eg,
    @if (result == STATUS_OK)
    {
    int output;
    result = TryMore(&output);
    }@
    when I set the break point in the line "result = TryMore(&output);" and want to look at the value of output
    the debugger will jump out of the "if" sentence directly.
    So I must add some extra codes behind the "result = TryMore(&output);" to make the debugger stop.
    just like:
    @if (result == STATUS_OK)
    {
    int output;
    result = TryMore(&output);
    int n = 0;
    n = 1;
    }@

    2, If I set the symbol path/server in the CDB it's slowly to start the debugger.But the I got the recommended in formation from QTCreator.
    what's the matter if I didn't set the symbol?

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved