Navigation

    Qt Forum

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

    • UNSOLVED How to translate text dynamically...?
      Mobile and Embedded • qt 5.5.0 translate qt 4.7.4 • • Rohith  

      9
      0
      Votes
      9
      Posts
      2696
      Views

      @Rohith I don't know. Use Google Search to find it out!
    • SOLVED blocking connect()
      General and Desktop • signal & slot connect qt 5.5.0 • • Pogi  

      5
      0
      Votes
      5
      Posts
      2462
      Views

      @Chris-Kawa my sender and receiver is in different thread. I see! you hit all the bullseye! THanks guys! and i now understand the Qt::BlockingQueuedConnection
    • [Solved] Compilation error when using a flagable enumeration in a Q_PROPERTY
      General and Desktop • moc qproperty qt 5.5.0 qflag • • kylek  

      6
      0
      Votes
      6
      Posts
      3556
      Views

      You don't have to mix anything. What you use in your enum are hexadecimal values not binary. That means (left side hex, right side binary): 0x0 == 0, 0x1 == 1, 0x10 == 10000, 0x100 == 100000000! I guess what you actually want is what Chris Kawa said: 0x01 == 1, 0x02 == 10, 0x04 == 100, 0x08 == 1000, 0x10 == 10000
    • Unable to checkout branch from repo
      General and Desktop • qt 5.5.0 • • astodolski  

      1
      0
      Votes
      1
      Posts
      969
      Views

      No one has replied

    • Qt Ctrl++ (Control Plus Plus) Shortcut Not Working in Qt 5.5
      General and Desktop • gui creator keyboard shortcut qt 5.5.0 dispatch • • markanth2  

      3
      0
      Votes
      3
      Posts
      1655
      Views

      Yes, you are correct. There is more information here for anyone else interested: https://bugreports.qt.io/browse/QTBUG-47701
    • Zero-size files in Qt 5.5.0 and Qt Creator installation.
      Installation and Deployment • documentation examples qt 5.5.0 qt creator 3.4 • • jnguetsop  

      1
      0
      Votes
      1
      Posts
      575
      Views

      No one has replied

    • Compiling QtCreator 3.4.2 with Qt 5.5.0 reports error on qsingleapplication.h: using of incomplete class "QSharedMemory"
      Tools • qt 5.5.0 compile-error qtcreator 3.4.2 • • JohnYork  

      2
      0
      Votes
      2
      Posts
      1102
      Views

      Newest progress: Today after many times of compiling and testing, I found this error was caused by the definition of macro QT_NO_SHAREDMEMORY, it made the definition of class QSharedMemory unavailable in header file <QT_INSTALL_DIR>/include/QtCore/qsharedmemory.h. The macro QT_NO_SHAREDMEMORY is defined in qconfig.h, which is generated in my custom-building progress of Qt5.5.0. But the qconfig.h in official version of Qt5.5.0 does not contains the definition of that macro. So I guess whether the configure scripts generated this macro, because qconfig.h is generated by the scripts in file <QT_SRC_DIR>/qtbase/configure. After many times of testing, I found there is a part of script code which is very strange and make me confused. this part of script lies in line 4453 - 4463: # check IPC support if ! compileTest unix/ipc_sysv "ipc_sysv" ; then # SYSV IPC is not supported - check POSIX IPC if compileTest unix/ipc_posix "ipc_posix" ; then QCONFIG_FLAGS="$QCONFIG_FLAGS QT_POSIX_IPC" else if [ "$XPLATFORM_ANDROID" = "no" ] ; then QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_SYSTEMSEMAPHORE QT_NO_SHAREDMEMORY" fi fi fi As mentioned above, if the script found the compileTest of ipc_posix failed, and if the target platform is not android, then variable QCONFIG_FLAGS will be appended with QT_NO_SYSTEMSEMAPHORE and QT_NO_SHAREDMEMORY. Therefore the scripts between line 6662 and 6693 will generate the definition of macro QT_NO_SHAREDMEMORY in file qconfig.h. I'm doubted that why the SYSTEMSEMAPHORE and SHAREDMEMORY should be disabled while the target platform is not android. I guess maybe it is a clerical error and the code if [ "$XPLATFORM_ANDROID" = "no" ] ; should be if [ "$XPLATFORM_ANDROID" != "no" ] ;. But I'm not sure, could any one tell me?
    • Help with example rss news in setting custom rss address
      Mobile and Embedded • qt 5.5.0 • • cmall  

      1
      0
      Votes
      1
      Posts
      345
      Views

      No one has replied

    • SOLVED OpenSSL and Mac OS X
      Installation and Deployment • openssl mac os x qt 5.5.0 • • BugraK  

      7
      0
      Votes
      7
      Posts
      13106
      Views

      Thanks, -no-openssl -securetransport works. Now I can use Mac OS X native secure transport instead of OpenSSL.
    • Fail to retrieve bluetooth information
      Mobile and Embedded • android bluetooth qt 5.4.1 qt 5.5.0 android 2.3.3 htc desire • • NGV1  

      0
      0
      Votes
      0
      Posts
      469
      Views

      No one has replied