Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt WebKit
  4. Visual Studio debugger cannot step into QtWebkit.dll code
Forum Updated to NodeBB v4.3 + New Features

Visual Studio debugger cannot step into QtWebkit.dll code

Scheduled Pinned Locked Moved Qt WebKit
2 Posts 2 Posters 1.7k Views 1 Watching
  • 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.
  • B Offline
    B Offline
    bmedina
    wrote on last edited by
    #1

    I'm trying to debug an issue I'm having with launching windows from Javascript in a web view. However, I cannot step into any QtWebkit.dll code from the Visual Studio debugger using Qt 4.8.5. E.g. a simple app:
    @
    #include <QApplication>
    #include <QWebView>

    int main(int argc, char** argv)
    {
    QApplication app(argc, argv);

    QWebView webView;
    webView.load(QUrl("http://google.com"));
    webView.show();
    
    return app.exec();
    

    }
    @

    I can step into QApplication's, QUrl's, and QString's constructors. I cannot, however, step into QWebview::load or any other QtWebkit.dll code. I've tried with both the pre-built binaries from qt-project.org as well as my own libraries built from source.

    Any suggestions?

    1 Reply Last reply
    0
    • M Offline
      M Offline
      minds
      wrote on last edited by
      #2

      Hi,
      You can't debug a compiled code. Use the source code

      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