mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #117] Warnings when initialize FileDialog #70
Labels
No labels
bug
enhancement
help wanted
help wanted
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/qmlnet#70
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Chukak on GitHub (Apr 7, 2019).
Original GitHub issue: https://github.com/qmlnet/qmlnet/issues/117
For example, my code in
Main.qmlAnd
FilesDialog.qmlWhen i launch the app, i get two warnings
Version of qmlnet:
0.7.0@MaxMommersteeg commented on GitHub (Apr 8, 2019):
I was able to reproduce the warnings on my Windows machine. Qml's
FileDialogcomponent uses theQQControlsFileDialogsection of the application-specificQSettings. AFAIK we currently don't support configuring these settings.More: https://doc.qt.io/qt-5/qml-qtquick-dialogs-filedialog.html#details
@Chukak commented on GitHub (Apr 9, 2019):
Ok, now i know what reproduces these warnings.
Thanks for your reply!
@MaxMommersteeg commented on GitHub (Apr 9, 2019):
Not sure if we should close this issue just yet. I think we need to support this. What do you think @pauldotknopf ?
@pauldotknopf commented on GitHub (Apr 9, 2019):
Yeah, this needs to be done IMO.
@Diviis commented on GitHub (Dec 21, 2020):
I have the same issue, on Windows with MSVC 2019 compiler (32 and 64 bits).
Application ouput :
file:///F:/QtOnline/5.15.2/msvc2019/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: Failed to initialize QSettings instance. Status code is: 1 file:///F:/QtOnline/5.15.2/msvc2019/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: The following application identifiers have not been set: QVector("organizationName", "organizationDomain")main.qml :
`import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Dialogs 1.2
ApplicationWindow {
width: 1280
height: 720
visible: true
}
`