2 Replies to “Глава 53 – Знакомство с Qt Quick”

  1. Hello!
    It is impossible to download source code for your book from supplied website: http://www.bhv.ru/books/book.php?id=200373

    There is a mistake in code for chapter 53.
    This fragment should be:
    “`
    import “myfunctions.js” as MyScripts
    Rectangle {
    width: MyScripts.maximum(parent.width, 100)
    }
    “`

    but the printed code is:
    “`
    import “myfunctions.js” as MyScripts
    Rectangle {
    function maximum(a, b)
    {
    return a > b ? a : b;
    }
    width: MyScripts.maximum(parent.width, 100)
    }
    “`

Leave a Reply

Your email address will not be published. Required fields are marked *