<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Qt Creator and other tools]]></title><description><![CDATA[Have a question about Qt Creator, our cross-platform IDE, or any of the other tools? Ask here!]]></description><link>https://forum.qt.io/category/13</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 17:45:37 GMT</lastBuildDate><atom:link href="https://forum.qt.io/category/13.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 14 May 2026 22:01:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Refactor submenu: Reenable &quot;Insert Virtual Functions of Base Classes&quot;, clangd replacement is too simple&#x2F;unreliable.]]></title><description><![CDATA[Hi,
Which version of Qt Creator are you talking about ?
]]></description><link>https://forum.qt.io/topic/164677/refactor-submenu-reenable-insert-virtual-functions-of-base-classes-clangd-replacement-is-too-simple-unreliable.</link><guid isPermaLink="true">https://forum.qt.io/topic/164677/refactor-submenu-reenable-insert-virtual-functions-of-base-classes-clangd-replacement-is-too-simple-unreliable.</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Thu, 14 May 2026 22:01:35 GMT</pubDate></item><item><title><![CDATA[Qt Creator - streamline find current qml file usage?]]></title><description><![CDATA[<p dir="auto">Qt Creator v19, Windows 11<br />
In my work, especially with existing code, I want to see where currently edited component is used.<br />
Only repeatable solutions is to RMB on top bar on file name, choose Copy File Name, Ctrl+Shift+F, paste name and search.</p>
<p dir="auto">I couldn't find existing command to do it.<br />
I tried with Lua Script</p>
<pre><code>T = require'TextEditor'
local U = require 'Utils'
local A = require 'Action'
local Q = require 'Qt'
local editor = T.currentEditor()
if editor then
    local doc = editor:document()
    local filepath = doc:file()
    local fileName = filepath:fileName()
    local ext = string.sub(fileName,-3)
    local name = string.sub(fileName,1,-5)
    if ext == "qml" then
        Q.clipboard().text = name
        A.trigger("Find.Dialog")
    end
end
</code></pre>
<p dir="auto">But ... there's no action to trigger search and jump to results. I can ONLY open search pane and manually paste filename.</p>
<p dir="auto">Are there other solutions that I'm missing?</p>
<p dir="auto"><code>Ctrl+Shift+U</code> on component <code>Tom</code> in any place of its usage shows all places of its usage. It could be extended to work from within Qml file.</p>
]]></description><link>https://forum.qt.io/topic/164669/qt-creator-streamline-find-current-qml-file-usage</link><guid isPermaLink="true">https://forum.qt.io/topic/164669/qt-creator-streamline-find-current-qml-file-usage</guid><dc:creator><![CDATA[SebastianM]]></dc:creator><pubDate>Wed, 13 May 2026 19:58:55 GMT</pubDate></item><item><title><![CDATA[Qt Creator 19.0.2 released]]></title><description><![CDATA[<p dir="auto">We are happy to announce the release of Qt Creator 19.0.2!</p>
<p dir="auto"><a href="https://www.qt.io/blog/qt-creator-19.0.2-released" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.qt.io/blog/qt-creator-19.0.2-released</a></p>
]]></description><link>https://forum.qt.io/topic/164665/qt-creator-19.0.2-released</link><guid isPermaLink="true">https://forum.qt.io/topic/164665/qt-creator-19.0.2-released</guid><dc:creator><![CDATA[ziller]]></dc:creator><pubDate>Wed, 13 May 2026 08:56:44 GMT</pubDate></item><item><title><![CDATA[How to encode Creator run settings in cmake preset?]]></title><description><![CDATA[I've created https://qt-project.atlassian.net/browse/QTCREATORBUG-34563
]]></description><link>https://forum.qt.io/topic/164660/how-to-encode-creator-run-settings-in-cmake-preset</link><guid isPermaLink="true">https://forum.qt.io/topic/164660/how-to-encode-creator-run-settings-in-cmake-preset</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Tue, 12 May 2026 08:04:50 GMT</pubDate></item><item><title><![CDATA[Qt Creator 20 Beta released]]></title><description><![CDATA[<p dir="auto">We are happy to announce the release of Qt Creator 20 Beta!</p>
<p dir="auto"><a href="https://www.qt.io/blog/qt-creator-20-beta-released" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.qt.io/blog/qt-creator-20-beta-released</a></p>
]]></description><link>https://forum.qt.io/topic/164644/qt-creator-20-beta-released</link><guid isPermaLink="true">https://forum.qt.io/topic/164644/qt-creator-20-beta-released</guid><dc:creator><![CDATA[ziller]]></dc:creator><pubDate>Fri, 08 May 2026 09:50:30 GMT</pubDate></item><item><title><![CDATA[Getting the size of the MainWindow]]></title><description><![CDATA[@hskoglund
Using a timer can be anything between a waste of time and vain hope.
It depends on the operating system, how showMaximized(), showNormal() and the like are handled.
QWidget::windowState() reflects what has been ordered to the window manager.
The problem is that the widget's geometry can change twice. First time when showMaximized() has been processed and
widget-&gt;windowState().testFlag(Qt::WindowMaximized) returns true.
Second time, when the window manager has applied decorations (i.e. title bar and window handles).
A good place to look for inspiration is tst_QWidget::showMaximized() and showFullScreen().
The QTRY_ macros generally process events until either the predicate is true or a timeout is hit. They're not available in applications, but you can write your own methods that work for your use case.
]]></description><link>https://forum.qt.io/topic/164625/getting-the-size-of-the-mainwindow</link><guid isPermaLink="true">https://forum.qt.io/topic/164625/getting-the-size-of-the-mainwindow</guid><dc:creator><![CDATA[Axel Spoerl]]></dc:creator><pubDate>Thu, 30 Apr 2026 20:29:28 GMT</pubDate></item><item><title><![CDATA[Display an image in a c++ program]]></title><description><![CDATA[@JYG61 See "Topics Tools" at the top
]]></description><link>https://forum.qt.io/topic/164620/display-an-image-in-a-c-program</link><guid isPermaLink="true">https://forum.qt.io/topic/164620/display-an-image-in-a-c-program</guid><dc:creator><![CDATA[jsulm]]></dc:creator><pubDate>Wed, 29 Apr 2026 18:24:45 GMT</pubDate></item><item><title><![CDATA[QtCreator 19.0.1 Total crash when copying source code]]></title><description><![CDATA[@Andy314 and @Udo-Alt
I tried to reproduce the problem, but could not reproduce this bug.
Can one of you give exact instructions with sample code to reproduce this problem? Then it would be possible to create a fix.
Regards
]]></description><link>https://forum.qt.io/topic/164600/qtcreator-19.0.1-total-crash-when-copying-source-code</link><guid isPermaLink="true">https://forum.qt.io/topic/164600/qtcreator-19.0.1-total-crash-when-copying-source-code</guid><dc:creator><![CDATA[aha_1980]]></dc:creator><pubDate>Sat, 25 Apr 2026 08:47:43 GMT</pubDate></item><item><title><![CDATA[Qt Creator 19 - Android manifest file editor not working]]></title><description><![CDATA[I have the same problem but in windows 10... did you find any solution ?
]]></description><link>https://forum.qt.io/topic/164594/qt-creator-19-android-manifest-file-editor-not-working</link><guid isPermaLink="true">https://forum.qt.io/topic/164594/qt-creator-19-android-manifest-file-editor-not-working</guid><dc:creator><![CDATA[sbela]]></dc:creator><pubDate>Thu, 23 Apr 2026 12:55:36 GMT</pubDate></item><item><title><![CDATA[Qt Creator 19.0.1 released]]></title><description><![CDATA[<p dir="auto">We are happy to announce the release of Qt Creator 19.0.1!</p>
<p dir="auto"><a href="https://www.qt.io/blog/qt-creator-19.0.1-released" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.qt.io/blog/qt-creator-19.0.1-released</a></p>
]]></description><link>https://forum.qt.io/topic/164592/qt-creator-19.0.1-released</link><guid isPermaLink="true">https://forum.qt.io/topic/164592/qt-creator-19.0.1-released</guid><dc:creator><![CDATA[ziller]]></dc:creator><pubDate>Thu, 23 Apr 2026 10:44:59 GMT</pubDate></item><item><title><![CDATA[Qt Creator, CMakePresets and conan - can&#x27;t use own conan profile]]></title><description><![CDATA[Update Qt Creator conan mechanism
In file c:\Qt\Tools\QtCreator_v20\share\qtcreator\cmake-helper\package-manager.cmake
in line 115 (file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/CMakeLists.txt" ") generates CMakeLists.txt with hardcoded default profile
A little bit higher
      set(PROFILE_FILE "")
      if (CONAN_HOST_PROFILE OR CONAN_BUILD_PROFILE)
        if (CONAN_HOST_PROFILE)
          set(PROFILE_FILE "${PROFILE_FILE} -pr:h \"${CONAN_HOST_PROFILE}\"")
        endif()
        if (CONAN_BUILD_PROFILE)
          set(PROFILE_FILE "${PROFILE_FILE} -pr:b \"${CONAN_BUILD_PROFILE}\"")
        endif()
      else()
        set(PROFILE_FILE "-pr:a \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\"")
      endif()

and substitute in line 134 (before adding above lines)
from -pr \\"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\\" to "${PROFILE_FILE}".
]]></description><link>https://forum.qt.io/topic/164586/qt-creator-cmakepresets-and-conan-can-t-use-own-conan-profile</link><guid isPermaLink="true">https://forum.qt.io/topic/164586/qt-creator-cmakepresets-and-conan-can-t-use-own-conan-profile</guid><dc:creator><![CDATA[SebastianM]]></dc:creator><pubDate>Tue, 21 Apr 2026 08:39:52 GMT</pubDate></item><item><title><![CDATA[Specifying name of output .qrc file when using qt_add_translations]]></title><description><![CDATA[The following appears to work, but is it the correct way to do it?
qt_add_translations(${PROJECT_NAME}
    TS_FILE_DIR i18n
    PLURALS_TS_FILE i18n/${PROJECT_NAME}_en.ts
    PLURALS_TS_FILE i18n/${PROJECT_NAME}_en_GB.ts
    QM_FILES_OUTPUT_VARIABLE qm_files
    )
qt_add_resources(${PROJECT_NAME} "kernel_translations"
    PREFIX "/i18n"
    BASE "${CMAKE_CURRENT_BINARY_DIR}"
    FILES ${qm_files}
    )


]]></description><link>https://forum.qt.io/topic/164577/specifying-name-of-output-.qrc-file-when-using-qt_add_translations</link><guid isPermaLink="true">https://forum.qt.io/topic/164577/specifying-name-of-output-.qrc-file-when-using-qt_add_translations</guid><dc:creator><![CDATA[Perdrix]]></dc:creator><pubDate>Sat, 18 Apr 2026 11:48:06 GMT</pubDate></item><item><title><![CDATA[Qt Creator not picking up changes to .cpp files, will not build unless I first clean the project?]]></title><description><![CDATA[The plot thickens...
I cleaned out the entire build directory, including what I thought might have been a stale .qmake.stash file. After building everything successfully from scratch, I introduced an error by intentionally misspelling one of the variables in a function in MySource.cpp. Tried to compile that single file and got the same error as reported above.
So I corrected the error, right-clicked once more on the file name in the "Projects" view, and now I have this error:
:-1: error: No rule to make target '.obj/MySource.o'.  Stop.

Once again, I click on the main "Build" icon on the bottom left, and everything successfully compiles and links. I tried to make a minimal project to reproduce the error, but I cannot pin it down. It doesn't seem to have anything to do with the presence of the OBJECTS_DIR variable. It could be that the source file is in a subproject of the main project which has TEMPLATE=subdirs. But the subproject is TEMPLATE=app. And this did work for many years (i.e. compiling a single file from the "Projects" view context menu). Something has broken recently.
]]></description><link>https://forum.qt.io/topic/164573/qt-creator-not-picking-up-changes-to-.cpp-files-will-not-build-unless-i-first-clean-the-project</link><guid isPermaLink="true">https://forum.qt.io/topic/164573/qt-creator-not-picking-up-changes-to-.cpp-files-will-not-build-unless-i-first-clean-the-project</guid><dc:creator><![CDATA[Robert Hairgrove]]></dc:creator><pubDate>Fri, 17 Apr 2026 10:41:51 GMT</pubDate></item><item><title><![CDATA[Subversion unusable after upgrading Qt (macOS)]]></title><description><![CDATA[OK... but when I do "Repository Status", I get a random selection of some of the directories. It's missing the main directories.
Also, it's showing me binary file types that should never be committed to a Source Repository:

.OBJ
.DLL
.SBR
.DYLIB
.PCH
. EXE

I'm pretty sure I never used to see those.
]]></description><link>https://forum.qt.io/topic/164546/subversion-unusable-after-upgrading-qt-macos</link><guid isPermaLink="true">https://forum.qt.io/topic/164546/subversion-unusable-after-upgrading-qt-macos</guid><dc:creator><![CDATA[Sprezzatura]]></dc:creator><pubDate>Fri, 10 Apr 2026 14:28:02 GMT</pubDate></item><item><title><![CDATA[Qt Creator not producing stack trace]]></title><description><![CDATA[<p dir="auto">Hi,<br />
I cannot get Qtcreator to produce a stack trace when my program crashes.<br />
Version QtCreator 16.0.2 installed from online installer.<br />
OS Windows 11<br />
I compiled in qtcreator in debug mode and then run my program in debug mode.<br />
The kit is set to use a debugger and the debug mode will stop at any breakpoint. However, I am using no breakpoints now and I just want to get a post-crash stack trace .<br />
My program exits (crashes) with code 3 but qtcreator does not produce a stack trace or covers its tracks post crash. In the past, I used to get stack traces. I have no idea why it won't work this time? I'm forced now to insert hundreds of qDebug() statements in my code and I'm about to pivot to CLion to fix this.<br />
Any ideas welcome,<br />
Thanks</p>
]]></description><link>https://forum.qt.io/topic/164542/qt-creator-not-producing-stack-trace</link><guid isPermaLink="true">https://forum.qt.io/topic/164542/qt-creator-not-producing-stack-trace</guid><dc:creator><![CDATA[montanaviking]]></dc:creator><pubDate>Thu, 09 Apr 2026 22:41:34 GMT</pubDate></item><item><title><![CDATA[cdb.exe no longer in the Windows Kits folder!?]]></title><description><![CDATA[Googling for 'cdb download' gives me this as first link: https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/debugger-download-tools
]]></description><link>https://forum.qt.io/topic/164539/cdb.exe-no-longer-in-the-windows-kits-folder</link><guid isPermaLink="true">https://forum.qt.io/topic/164539/cdb.exe-no-longer-in-the-windows-kits-folder</guid><dc:creator><![CDATA[Christian Ehrlicher]]></dc:creator><pubDate>Thu, 09 Apr 2026 15:09:53 GMT</pubDate></item><item><title><![CDATA[apksigner command failed]]></title><description><![CDATA[<p dir="auto">I'm trying to run a Release build on an Android device from Qt Creator.<br />
The build succeeds if signing is disabled, but deploying to a device fails, as expected.</p>
<p dir="auto">If I enable "Sign package" In Build Settings-Build Steps-Build Android APK then the build fails as shown below. I am suspicious of the fact that the failure is reported before the verification finishes.</p>
<p dir="auto">How can I either fix this, or work around the issue?</p>
<p dir="auto">...<br />
33673095 lib/arm64-v8a/libqml_QtQuick_Controls_FluentWinUI3_qtquickcontrols2fluentwinui3styleplugin_arm64-v8a.so (OK - compressed)<br />
34717866 lib/arm64-v8a/libqml_QtQuick_Controls_Fusion_impl_qtquickcontrols2fusionstyleimplplugin_arm64-v8a.so (OK - compressed)<br />
34722594 lib/arm64-v8a/libqml_QtQuick_Controls_Fusion_qtquickcontrols2fusionstyleplugin_arm64-v8a.so (OK - compressed)<br />
34727689 lib/arm64-v8a/libqml_QtQuick_Controls_Imagine_impl_qtquickcontrols2imaginestyleimplplugin_arm64-v8a.so (OK - compressed)<br />
34732410 lib/arm64-v8a/libqml_QtQuick_Controls_Imagine_qtquickcontrols2imaginestyleplugin_arm64-v8a.so (OK - compressed)<br />
Missing input APK<br />
apksigner command failed.<br />
34737514 lib/arm64-v8a/libqml_QtQuick_Controls_Material_impl_qtquickcontrols2materialstyleimplplugin_arm64-v8a.so (OK - compressed)<br />
34742239 lib/arm64-v8a/libqml_QtQuick_Controls_Material_qtquickcontrols2materialstyleplugin_arm64-v8a.so (OK - compressed)<br />
34747394 lib/arm64-v8a/libqml_QtQuick_Controls_Universal_impl_qtquickcontrols2universalstyleimplplugin_arm64-v8a.so (OK - compressed)<br />
34752137 lib/arm64-v8a/libqml_QtQuick_Controls_Universal_qtquickcontrols2universalstyleplugin_arm64-v8a.so (OK - compressed)<br />
34757265 lib/arm64-v8a/libqml_QtQuick_Controls_impl_qtquickcontrols2implplugin_arm64-v8a.so (OK - compressed)<br />
34762025 lib/arm64-v8a/libqml_QtQuick_Controls_qtquickcontrols2plugin_arm64-v8a.so (OK - compressed)<br />
34773017 lib/arm64-v8a/libqml_QtQuick_Dialogs_qtquickdialogsplugin_arm64-v8a.so (OK - compressed)<br />
34777762 lib/arm64-v8a/libqml_QtQuick_Dialogs_quickimpl_qtquickdialogs2quickimplplugin_arm64-v8a.so (OK - compressed)<br />
34782511 lib/arm64-v8a/libqml_QtQuick_Effects_effectsplugin_arm64-v8a.so (OK - compressed)<br />
34787223 lib/arm64-v8a/libqml_QtQuick_Layouts_qquicklayoutsplugin_arm64-v8a.so (OK - compressed)<br />
34791942 lib/arm64-v8a/libqml_QtQuick_Shapes_qmlshapesplugin_arm64-v8a.so (OK - compressed)<br />
34796736 lib/arm64-v8a/libqml_QtQuick_Templates_qtquicktemplates2plugin_arm64-v8a.so (OK - compressed)<br />
34801748 lib/arm64-v8a/libqml_QtQuick_Window_quickwindowplugin_arm64-v8a.so (OK - compressed)<br />
34806997 lib/arm64-v8a/libqml_QtQuick_qtquick2plugin_arm64-v8a.so (OK - compressed)<br />
34811779 lib/arm64-v8a/libqml_QtWebView_qtwebviewquickplugin_arm64-v8a.so (OK - compressed)<br />
34816513 lib/arm64-v8a/libqml_Qt_labs_folderlistmodel_qmlfolderlistmodelplugin_arm64-v8a.so (OK - compressed)<br />
34821200 lib/arm64-v8a/libqml_Qt_labs_platform_labsplatformplugin_arm64-v8a.so (OK - compressed)<br />
34825855 lib/arm64-v8a/libqml_Qt_labs_settings_qmlsettingsplugin_arm64-v8a.so (OK - compressed)<br />
34830467 lib/arm64-v8a/libssl_3.so (OK - compressed)<br />
35074415 lib/arm64-v8a/libswresample.so (OK - compressed)<br />
35116529 lib/arm64-v8a/libswscale.so (OK - compressed)<br />
35399300 assets/android_rcc_bundle.rcc (OK)<br />
35415361 AndroidManifest.xml (OK - compressed)<br />
35417768 res/2H.png (OK)<br />
35418788 res/8p.png (OK)<br />
35421245 res/Dt.xml (OK - compressed)<br />
35421484 res/yj.png (OK)<br />
35423100 resources.arsc (OK)<br />
Verification succesful<br />
APK already aligned, copying it for signing.<br />
12:00:38: The command "C:\Qt\6.8.3\mingw_64\bin\androiddeployqt.exe --input path/to/Qt_6_8_3_for_Android_arm64_v8a-Release/android-ErgRace-deployment-settings.json --output path/to/Qt_6_8_3_for_Android_arm64_v8a-Release/android-build-MyApp --android-platform android-34 --jdk "C:/Program Files/Eclipse Adoptium/jdk-17.0.14.7-hotspot" --verbose --gradle --release --sign path/to/my.keystore myalias --storepass "****" --no-gdbserver" terminated with exit code 15.</p>
]]></description><link>https://forum.qt.io/topic/164535/apksigner-command-failed</link><guid isPermaLink="true">https://forum.qt.io/topic/164535/apksigner-command-failed</guid><dc:creator><![CDATA[g1ennr]]></dc:creator><pubDate>Thu, 09 Apr 2026 00:40:29 GMT</pubDate></item><item><title><![CDATA[Qt Installer Framework 4.11: Matlab Runtime Environment]]></title><description><![CDATA[<p dir="auto">I am struggling to create a proper installer for my application on Windows that has plugins and these depend on external tools that might be installed already. One of these external tools is an executable that requires the Matlab Runtime Environment 2023b to be installed. The challenge is as follows, where I want the following tree-view of the components:</p>
<pre><code>Application
    |-- [ ] Plugin1
    |-- [ ] Plugin2
[ ] Matlab Runtime Environment 2023b
</code></pre>
<p dir="auto">Note that both Plugins are not selected, neither is the Matlab component (in the real case, I will have some selected by default). The Matlab component should only be considered when the Matlab Runtime Environment is not yet installed (which can be done independently of my application of course). One can check for a specific key in de registry to know whether the Matlab Runtime Environment is already installed or not. The actual installation can be done by adding some operations in an installscript.qs for the Matlab component. I do have a data.7z in the data directory of the Matlab component that contains what you can download from Mathworks.</p>
<p dir="auto">I do not find it necessary that the selection of the Matlab component is updated in the tree view when a user selects a plugin that requires it although that would be nice, but then it should not be possible to unselect it as long as a plugin requiring it is selected (and it could be unselected in case there are no plugins anymore selected requiring it). But of course, when the installation summary is shown and when the installation starts, it should be checked whether any plugin is selected that requires the Matlab Runtime Environment and install it via the Matlab component if that is not the case.</p>
<p dir="auto">I do want to have the possibility of (un)selecting the Matlab component, but only in case the specific key does not yet exist in the registry (in the real case, I will have some of the plugins and the Matlab component selected by default). However, if the key  does exist, the installer should <em>completely</em> ignore the Matlab component! That means, that it should not download anything (it's 4.2GB!) nor perform any operations to install it. It also means that the user must not be able to (un-)select the Matlab component upon updating or uninstalling when the key in the registry exists (i.e., in such case the Matlab component should be hidden from the tree view). The user should also never be able to uninstall the Matlab Runtime Environment via my installer. During updating, the behavior should be the same as during installation.</p>
<p dir="auto">A long story, but I hope that it is clear what I am trying to achieve. One of the main problems that I am struggling with to solve is that when  the Matlab Runtime Environment is already installed (via the normal way, i.e., without using my installer), my installer still starts downloading the 4.2GB file and subsequently doesn't do anything with it. So, the first question that I have is: how can I specify that the Matlab component must be completely ignored when the key in the registry exists such that nothing happens regarding that component, even if plugins are selected that depend on it?</p>
<p dir="auto">BTW.: Some of the plugins are also depending on a Python Environment and several 3rd Party Tools for which a similar story can be told (while the check on whether these are already installed is just checking the existence of a certain directory).</p>
]]></description><link>https://forum.qt.io/topic/164524/qt-installer-framework-4.11-matlab-runtime-environment</link><guid isPermaLink="true">https://forum.qt.io/topic/164524/qt-installer-framework-4.11-matlab-runtime-environment</guid><dc:creator><![CDATA[ModelTech]]></dc:creator><pubDate>Sun, 05 Apr 2026 07:45:43 GMT</pubDate></item><item><title><![CDATA[Unwanted separation of *.h header and *.cpp source files, leading to ugly doubled folder structure in QtCreator]]></title><description><![CDATA[@Gerd-Brecht This has been reported. See https://qt-project.atlassian.net/browse/QTCREATORBUG-33238
There is a workaround. Just set the environment variable QTC_PROJECT_NO_COMPRESS to 1 and the old behavior should be brought back.
Edit: in the case that this doesn't help, please do create a bugreport with an example that reproduces the issue.
]]></description><link>https://forum.qt.io/topic/164522/unwanted-separation-of-.h-header-and-.cpp-source-files-leading-to-ugly-doubled-folder-structure-in-qtcreator</link><guid isPermaLink="true">https://forum.qt.io/topic/164522/unwanted-separation-of-.h-header-and-.cpp-source-files-leading-to-ugly-doubled-folder-structure-in-qtcreator</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Sat, 04 Apr 2026 14:22:36 GMT</pubDate></item><item><title><![CDATA[MCP Server and Warp Terminal, Connection Issue]]></title><description><![CDATA[Okay, well, i'll wait until it gets into the "Preview" section of the MaintenanceTool installer app.But this is AWESOME news!
]]></description><link>https://forum.qt.io/topic/164519/mcp-server-and-warp-terminal-connection-issue</link><guid isPermaLink="true">https://forum.qt.io/topic/164519/mcp-server-and-warp-terminal-connection-issue</guid><dc:creator><![CDATA[davecotter]]></dc:creator><pubDate>Fri, 03 Apr 2026 02:41:48 GMT</pubDate></item><item><title><![CDATA[Valgrind Memcheck fails to start in Qt Creator (Linux Mint 22.2 &#x2F; Ubuntu 24.04)]]></title><description><![CDATA[@Tetsuzin72
I will just say that I use valgrind from Creator under Ubuntu 24.04 with no problem.  But I may not be doing the same as you, and I use the much older Creator which comes with 24.04 so I don't know about newer ones.
While you await a solution: if you really need to get this working, you could tell Creator to run a different "executable" for valgrind which is actually an executable shell script of yours.  Then you can go through the command line arguments Creator passes to it and remove the ones you say it prepends but you do not want before passing on to the real valgrind executable.  Just saying.
]]></description><link>https://forum.qt.io/topic/164515/valgrind-memcheck-fails-to-start-in-qt-creator-linux-mint-22.2-ubuntu-24.04</link><guid isPermaLink="true">https://forum.qt.io/topic/164515/valgrind-memcheck-fails-to-start-in-qt-creator-linux-mint-22.2-ubuntu-24.04</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Thu, 02 Apr 2026 09:54:57 GMT</pubDate></item><item><title><![CDATA[Qt MaintenanceTool ignores proxy setting]]></title><description><![CDATA[@Axel-Spoerl said in Qt MaintenanceTool ignores proxy setting:

Hit the settings button on the lower left and choose the "Network" tab. Specify your proxy there.

This was the first thing I did. In the past this worked but now I can set the proxy and it is ignored. The previous versions as well as the actual version has the problem that it doesn't remember that a proxy was set. It remembers the proxy settings itself but on every start it is set to System settings.

If you prefer the command line: /opt/Qt/MaintenanceTool --proxy http://proxyhost:8080 - or whatever the proxy port is instead of 8080.

Tried this also. This parameter seems to not exist any more. If I start it with this parameter it starts normal but ignores the setting. According to the help ( MaintenanceTool --help ) this parameter does not exist. Beside other parameters I get only this:
  --sp, --system-proxy                               Use system proxy on
                                                     Windows and Linux. This
                                                     option has no effect on
                                                     macOS. (Default)
  --np, --no-proxy                                   Do not use system proxy.


On Linux it should actually work and it does for me, also with 4.11.0. I don't know of any fundamental changes in QNetworkProxy or the IFW. Since you can pin it down to a specific version, it could be that

somehow the upgrade has tampered with MaintenanceTool's settings file and an existing proxy setting got lost
a local change of proxy settings got in the way
there is a bug in 4.11

With that said, could you check you environment for any of those variables and their content?
http_proxy / HTTP_PROXY
https_proxy / HTTPS_PROXY

If they exist and IFW doesn't pick them up, we have landed a bug worth reporting under https://bugreports.qt.io

Usually I don't use this environment variables, because the browsers allow to set this in the program. To access the machines on the Intranet I don't need the proxy. Because the list of exceptions for the proxy would be large, I renounced this.
However: I tried to set this variables also, but it didn't change anything.
To make it clear: The proxy itself is working. Other apps like browsers can access the Internet over the proxy.
A.T.
]]></description><link>https://forum.qt.io/topic/164514/qt-maintenancetool-ignores-proxy-setting</link><guid isPermaLink="true">https://forum.qt.io/topic/164514/qt-maintenancetool-ignores-proxy-setting</guid><dc:creator><![CDATA[TheoSys]]></dc:creator><pubDate>Thu, 02 Apr 2026 08:02:36 GMT</pubDate></item><item><title><![CDATA[AI Assistant Preferences Reset upon Qt Creator 19.0.0 restart]]></title><description><![CDATA[You can use the open source alternative plugins for Qt Creator:

QodeAssist
llama.qtcreator

The last one I maintain, and is part of the Qt Creator Extension store.
]]></description><link>https://forum.qt.io/topic/164513/ai-assistant-preferences-reset-upon-qt-creator-19.0.0-restart</link><guid isPermaLink="true">https://forum.qt.io/topic/164513/ai-assistant-preferences-reset-upon-qt-creator-19.0.0-restart</guid><dc:creator><![CDATA[cristian-adam]]></dc:creator><pubDate>Thu, 02 Apr 2026 04:25:57 GMT</pubDate></item></channel></rss>