16

I have this signal

class SystemUICfgScanner 
{
    /*code here*/
signals:
    void error(QString desc);
    /*more code*/
};

In QML I use an InfoBanner this way:

InfoBanner
{
    property string infodetails: ""
    id: systemuicfgErrorBanner
    text: "Error: " + infodetails
    Connections
    {
        target: cfgScanner
        onError: infodetails = desc
    }
}

When error(QString) signal is emitted, I'm getting this error

Invalid write to global property "infodetails"

What am I doing wrong?

Thanks in advance

marmistrz
  • 5,974
  • 10
  • 42
  • 94

1 Answers1

19

Try to reference InfoBanner instance by id:

InfoBanner
{
    property string infodetails: ""
    id: systemuicfgErrorBanner
    text: "Error: " + infodetails
    Connections
    {
        target: cfgScanner
        onError: systemuicfgErrorBanner.infodetails = desc
    }
}
sergk
  • 3,591
  • 1
  • 20
  • 14