Skip to content

Qt Creator and other tools

Have a question about Qt Creator, our cross-platform IDE, or any of the other tools? Ask here!
7.6k Topics 35.3k Posts
  • inporting the Ui data from qt3 to qt5

    Unsolved
    3
    0 Votes
    3 Posts
    799 Views
    SGaistS
    Hi, To add to @mrjj Qt 4 provides a tool to upgrade your Qt 3 .ui files to Qt 4 .ui files that can then be also used with Qt 5.
  • Creator: Find and Replace multi-line

    Unsolved
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • Qt first project

    59
    0 Votes
    59 Posts
    25k Views
    mrjjM
    @nick784512 Hi a ByteArray ( dynamic ) would be the best. :) void SerialPortReader::handleReadyRead() { m_readData.append(m_serialPort->readAll()); ...
  • Debugging Qt 5.7.0 that compiled as static

    Unsolved
    4
    0 Votes
    4 Posts
    922 Views
    SGaistS
    Hi, As silly as it may sound: use a dynamic build for debugging your application.
  • QMAKE_MACOSX_DEPLOYMENT_TARGET ignored on Qt 5.8

    Unsolved
    6
    0 Votes
    6 Posts
    3k Views
    K
    I can confirm this works: as a workaround, they can put the variables into <top-level>/.qmake.conf
  • Strange cursor behavior when editing QML in text editor

    Unsolved
    1
    0 Votes
    1 Posts
    336 Views
    No one has replied
  • Creator: Working with long issue list

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    A
    @hunger said in Creator: Working with long issue list: What you can do is use the TaskList plugin to work with pre-filtered lists of tasks. Those are pretty easy to create from all kinds of input (e.g. static analysis tools, etc.) with a bit of scripting. Not a perfect match, but I wrote that plugin so that I can work on specific sets of tasks from a static analysis tool and it is pretty nice for that. Can you pipe the output of an external call (from Creator) into the task list that way? Or do you have to go via a ".tasks" file that you have to open manually?
  • update from Qt3 to Qt5

    Unsolved
    7
    0 Votes
    7 Posts
    3k Views
    SGaistS
    Hi, Yes there is, with Qt 4.
  • Creator: How can external tools add to the "issues" list?

    Unsolved
    1
    0 Votes
    1 Posts
    448 Views
    No one has replied
  • macdeployqt

    Solved
    11
    0 Votes
    11 Posts
    2k Views
    C
    I doit now with install_name_tool -change. No other option will work for me. Thx
  • Extract Function is not taking the arguments as a Reference variable

    Moved Unsolved
    2
    0 Votes
    2 Posts
    575 Views
    jsulmJ
    @keksi-venksi You can simply change them to references (just & in front of the parameter name). Although you should avoid non-const references as it is not possible to know whether a function/method is changing its parameters without checking the function/method signature: int a = 10; myFunction(a); // Does myFunction change a or not? If a function is changing something it should return it as its return value: int a = 10; a = myFunction(a); One general note: making 10 functions out of a 100 lines function sounds somehow wrong. You should decide which and how many functions you need based on design and not on number of lines. It can be perfectly fine to divide 100 lines function into, for example, four functions.
  • "make install" does not work out-of-the-box in Qt Creator example projects

    Unsolved
    2
    0 Votes
    2 Posts
    582 Views
    jsulmJ
    @probono "Does not work" isn't a problem description. You should say what exactly you did and what did not work (errors/warnings?).
  • QT 5.8.0 mingw32 Moc compile error on Win10

    Unsolved
    6
    0 Votes
    6 Posts
    3k Views
    Q
    @SGaist Thanks, I will have a look on Jira so ...
  • Qt Creator help project: short function description

    Unsolved
    1
    0 Votes
    1 Posts
    448 Views
    No one has replied
  • How to compile kmap2qmap

    Solved kmap2qmap
    17
    0 Votes
    17 Posts
    5k Views
    SGaistS
    Thanks for sharing your solution ! Happy hacking :)
  • VS Add-in: No modules available

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    Q
    @jsulm Yep, right. It's just that normally I have separate debug and release builds with different configurations also.
  • QtCreator 4.2.1 no source files under CMake project

    Solved
    2
    0 Votes
    2 Posts
    1k Views
    M
    Finally I found problem. [image: d534560284bc43c2b03642966ecb74bb.png] Additional generator should be specified to build project tree. I removed it before configuring project. Topic can be closed
  • Qt Creator using Visual Studio compiler

    Solved
    9
    0 Votes
    9 Posts
    29k Views
    A
    @SGaist Got it. Thanks for explanation!
  • uic_wrapper.bat fails product compilation

    Unsolved
    8
    0 Votes
    8 Posts
    2k Views
    SGaistS
    Hi, That's pretty unusual to do command line development on Windows. That note, what path are modifying in your Makefile ? That's calling for trouble. You should rather setup your command line correctly than start fiddling with paths.