Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing a QML Desktop application using Qt 4.8.1 on Windows. The thing is: I'm having memory leaks when using Script Actions inside infinite animation loops. Even when there is no script actually running. Here's an example inside a MouseArea.

    SequentialAnimation
    {
        id: loadFisicaAnim
        loops: Animation.Infinite;
        ScriptAction
        {
            script: 
            {

            }
        }
    }

This generates a small memory leak. When the animation is stopped the memory seems to be freed. However, letting it run for ever obviously crashes the program.

Is this how Qt manages memory with ScriptActions? Am I doing anything wrong?

Theo

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.