Renaming variable and comment mousover help

Sysprogs forums Forums VisualGDB Renaming variable and comment mousover help

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #21192
    Jensa
    Participant

    Hi,
    Got a couple of minor issues with the editor help that I thought I’d report so you can look them over.

    One is with the renaming feature, it seems to be a bit buggy visually when there are underscore in the names of what you rename.
    The first underscore in what you rename is removed for some reason. This is only a visual bug though and the actual renaming works fine.
    But it is a bit confusing when it’s not clear what it will do.

    Another issue is the mouseover help you get from comments. The first character of the type is cut off and comes after the comment in a weird way.

    See attached files for more info.

    Regards
    Jens Nilsson

    • This topic was modified 5 years, 10 months ago by Jensa.
    Attachments:
    You must be logged in to view attached files.
    #21196
    Jensa
    Participant
    #include <iostream>
    
    using namespace std;
    
    class Test
    {
      void foo() { boolean = true; }
    
      // True or false
      bool boolean;
    };
    
    static void
    foo_function( int var_with_underscore )
    {
      var_with_underscore++;
    }
    
    int main( int argc_test, char * argv[] )
    {
      foo_function( 0 );
    
      char sz[] = "Hello, World!"; //Hover mouse over "sz" while debugging to see its contents
      cout << sz << endl; //<================= Put a breakpoint here
      return 0;
    }
    
    #21208
    support
    Keymaster

    Hi,

    No problem, thanks for reporting this. Please try this build: http://sysprogs.com/files/tmp/VisualGDB-5.4.3.2334.msi

    #21225
    Jensa
    Participant

    Thanks,

    That did indeed fix both issues.

    Regards
    Jens Nilsson

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.