Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. qt 5.3
    Log in to post

    • UNSOLVED Linking MSVCRT with Qt5.3
      General and Desktop • mingw qt 5.3 msvcrt • • Peppy  

      8
      0
      Votes
      8
      Posts
      1916
      Views

      @raven-worx @jsulm And therefore I am looking for the way how to mangle the VCRT library into my project, it's mandatory.
    • QAction::eventFilter: Ambiguous shortcut overload
      General and Desktop • qt application qaction qt 5.3 qshortcut • • Mahima  

      1
      0
      Votes
      1
      Posts
      1822
      Views

      No one has replied

    • Need Qt3D in Version 5.3.0
      Installation and Deployment • qt3d git qt 5.3 • • okieh  

      5
      0
      Votes
      5
      Posts
      1957
      Views

      @okieh said: I'm a little bit confused... In my sysroot directory for my target (i.mx6) I have Qt in version 5.2.1 and Qt3D libs with Version 5.3.0. Those Qt 3D libs are not officially-provided by the Qt Project, and they're incomplete. Perhaps you can ask the person who built those libs? I already tried to build the Qt3d 5.5 version with my Qt 5.2.1 dev enviroment, but it doesn't work. Why not? What errors do you get?
    • QNX 6.6, Qt 5.3: black screen on QGraphicsView with QOpenGLWidget
      Qt on BlackBerry and QNX • opengl qt 5.3 black screen qnx 6.6 setviewport • • CerJo  

      1
      0
      Votes
      1
      Posts
      1985
      Views

      No one has replied

    • is qtdbus included in 5.3 release?
      General and Desktop • configure dbus qt 5.3 • • thealse  

      1
      0
      Votes
      1
      Posts
      578
      Views

      No one has replied

    • Raspberry Pi QT 5.3.2 - qt.camera not working (no service found for - "org.qt-project.qt.camera"
      Mobile and Embedded • raspberry pi embedded linux camera mediaplayer qt 5.3 • • gcs278  

      6
      0
      Votes
      6
      Posts
      7726
      Views

      Call configure with -v, you should have some more details on what fails
    • SOLVED TableView rendering issue on Windows 7
      QML and Qt Quick • qml qt quick tableview qt 5.3 • • Monomix  

      3
      0
      Votes
      3
      Posts
      1467
      Views

      Turns out this was a threading issue. The object that contained my QAbstractTableModel-derived models had been moved to a worker thread, which doesn't work well with the model/view architecture - both the GUI thread and the worker thread were sending signals to the models, which meant that insert row and remove row operations were overlapping each other, hence the odd behaviour. The main take-out is: when using the model/view approach, the models must have the same thread affinity as the views (i.e. keep the models on the main application thread); don't move them to worker threads unless you want to get jiggy with serialising access. A thread that did help: http://stackoverflow.com/questions/9485339/design-pattern-qt-model-view-and-multiple-threads