Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Unknown method return type for registered type
Qt 6.11 is out! See what's new in the release blog

Unknown method return type for registered type

Scheduled Pinned Locked Moved QML and Qt Quick
1 Posts 1 Posters 1.4k 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.
  • K Offline
    K Offline
    killamanjarl
    wrote on last edited by
    #1

    I have the following main.cpp

    @int main(int argc, char *argv[])
    {
    QGuiApplication app(argc, argv);

    QtQuick2ApplicationViewer viewer;
    
    qmlRegisterType<project::Model>("com.company.project", 1, 0, "Model");
    qmlRegisterType<project::Run>("com.company.project", 1, 0, "Run");
    
    viewer.setMainQmlFile&#40;QStringLiteral("qml/ProjectQml/main.qml"&#41;);
    viewer.showExpanded();
    
    return app.exec();
    

    }@

    And the following snippet in main.qml

    @Project.Model {
    id: projectModel
    }

    FileDialog {
        id: fileDialog
        title: "Please choose a file"
        selectFolder: true
        onAccepted: {
            console.log("You chose: " + fileDialog.fileUrl)
            var run = projectModel.startLoadingRun(fileDialog.fileUrl)
        }
        onRejected: {
            console.log("Canceled")
        }
    }@
    

    When I reach the "var run = exegesisModel.startLoadingRun(fileDialog.fileUrl)" line I get the error Error: Unknown method return type: Run*

    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