Skip to content
  • 144k Topics
    719k Posts
    J.HilkJ
    @icebergenergy How did you add the files to your project — manually in Qt Creator, or did you rely on automatic folder parsing / globbing? Either way, if you delete a file via the file manager instead via QtCreator Project Manager, you'll have to rerun cmake.
  • Jobs, project showcases, announcements - anything that isn't directly development
    4k 23k
    4k Topics
    23k Posts
    S
    This is a community forum. Rarely do people from the Qt company see this. You should ask this question to Qt support directly.
  • Everything related to designing and design tools

    129 392
    129 Topics
    392 Posts
    J
    Using QT Designer might be the simpler route if the main goal is to keep the workflow smooth with Python. QT Design Studio projects often need manual adjustments before they run properly under PySide6.
  • Everything related to the QA Tools

    83 224
    83 Topics
    224 Posts
    B
    I have had a problem when editing the names.py manually in that Squish no longer recognises the object. I now delete the object and re-enter it after using the picker tool then add to object map. Not sure if this is what you meant, but hopefully this helps
  • Everything related to learning Qt.

    390 2k
    390 Topics
    2k Posts
    R
    Re: Introducing the QML for Beginners Learning Path & Challenges! I've completed the first course in this learning path, but I do not know where to access the challenge for the course because there is no enrollment or button to take me to the challenge [image: 569096c7-9018-4000-a4a4-76d4370d5036.png] [image: c3f56111-98ee-4618-8296-2304c987c36e.png]
  • 2k Topics
    13k Posts
    Christian EhrlicherC
    @stash22 said in Why does QTextStream::pos() return -1 while reading a file line-by-line in Qt?: m_readNmeaTextStream.pos() becomes -1. The documentation states this: https://doc.qt.io/qt-6/qtextstream.html#pos
  • 4k Topics
    18k Posts
    K
    Witam Funkcja otrzymuje listę wyrazów do obróbki. Ma sprawdzić czy w wyrazach listy występuje litera char1 . Jeśli wystąpi to usuwa dany wyraz z listy za pomocą metody QString.removeAt(). Nie wiem dlaczego gdy włączona jest metoda funkcja nie usuwa wszystkich wyrazów z literą a. Proszę o pomoc w wyjaśnieniu dlaczego tak się dzieje. QList<QString> MainWindow::searchWord(QList<QString> lista) { QString char1 = ui->lineEdit_6->text(); for( int n = 0; n < lista.size(); n++) { for (int i = 0; i < lista[i].size(); i++) { if(char1 == lista[n][i]) { qDebug() << lista[n]; lista.removeAt(n); } } } qDebug() << lista; return lista; } Tak wygląda wynik działania z metodą removeAt(): "polać" "polał" "polań" "polia" "polja" "polka" "polna" QList("polak", "polan", "polar", "polce", "polec", "poleć", "polej", "polek", "polem", "poleń", "polep", "poler", "polew", "poleź", "poleż", "polik", "polio", "polip", "polis", "poliu", "poliż", "polje", "polji", "polju", "polką", "polkę", "polki", "polko", "polną", "polne", "polni", "polny", "polom", "polon", "polor", "polot", "polub", "poluj") Funkcja pomija polak, polan, polar. Bez metody QString.removeAt(): QList<QString> MainWindow::searchWord(QList<QString> lista) { QString char1 = ui->lineEdit_6->text(); for( int n = 0; n < lista.size(); n++) { for (int i = 0; i < lista[i].size(); i++) { if(char1 == lista[n][i]) { qDebug() << lista[n]; //lista.removeAt(n); } } } qDebug() << lista; return lista; } "polać" "polak" "polał" "polan" "polań" "polar" "polia" "polja" "polka" "polna" QList("polać", "polak", "polał", "polan", "polań", "polar", "polce", "polec", "poleć", "polej", "polek", "polem", "poleń", "polep", "poler", "polew", "poleź", "poleż", "polia", "polik", "polio", "polip", "polis", "poliu", "poliż", "polja", "polje", "polji", "polju", "polka", "polką", "polkę", "polki", "polko", "polna", "polną", "polne", "polni", "polny", "polom", "polon", "polor", "polot", "polub", "poluj")
  • This is where all the posts related to the Qt web services go. Including severe sillyness.
    1k 10k
    1k Topics
    10k Posts
    D
    https://www.youtube.com/watch?v=QXeEoD0pB3E&list=PLsyeobzWxl7poL9JTVyndKe62ieoN-MZ3 Don't know what you need. Youtube series are great. Code along with them to see it working, break it and google what you broke.