Skip to content

Qt Contribution

Qt Contribution
84 Topics 518 Posts
QtWS25 Last Chance
  • do i really need two SSH keys?

    Solved
    12
    0 Votes
    12 Posts
    2k Views
    D
    i think you should move steps 6 and 7 from the top, and integrate them into the bottom, or really just make it one list, no need for separate sections
  • Build Qt Source (mac): 'make' immediately hits an error ?

    Solved
    7
    0 Votes
    7 Posts
    1k Views
    D
    yes, i upgraded to xcode 10 and it started working
  • GPush "Please specify exact ranges"

    Solved
    1
    2 Votes
    1 Posts
    542 Views
    No one has replied
  • blocked: cmake: command not found

    Solved
    7
    1 Votes
    7 Posts
    4k Views
    D
    @davecotter said in blocked: cmake: command not found: cmake: command not found here's what i ended up doing: Launch "MaintenanceTool", and choose "Add or remove components" (next) under "Qt -> Developer and Design Tools", check "CMake" (next, and complete that) in Terminal, ensure you add the folder containing cmake to your $PATH, eg: export PATH=$PATH:/path_to/Qt/Tools/CMake/CMake.app/Contents/bin
  • branch from origin/dev or gerrit/dev?

    Solved
    2
    0 Votes
    2 Posts
    533 Views
    VRoninV
    No, you just need a remote repository called gerrit where gpush will push the changes to, you can ignore it and just work with code from origin
  • how to set the connect blocking time when use QSqlDatabase::open()?

    Unsolved
    9
    0 Votes
    9 Posts
    2k Views
    boom stackB
    i did a lot google,but maybe i ignore something. thank you bro!it help
  • I try compile qtwebkit

    Unsolved
    13
    0 Votes
    13 Posts
    12k Views
    D
    @nikohal have you resolved the error.
  • How do our contributions fit into the Qt Company's releases?

    Unsolved
    7
    0 Votes
    7 Posts
    2k Views
    Pablo J. RoginaP
    @macfanpl said in How do our contributions fit into the Qt Company's releases?: Whats deeper impact of a bug in this case? From time to time, users are frustated that with new Qt releases, some bugs affecting them are still not solved. This is just one example of comment in a Qt release announcement: My app cannot use the Qt 5.12.5 and Qt 5.13.x due to following issue. https://bugreports.qt.io/browse/QTBUG-77423 This issue is very critical issue because it breaks previous behavior but it still only be opened not progress. So imagine you can fix such bug, you'll make a Qt user very happy I guess :-)
  • Finding documentation Bug

    Solved
    3
    0 Votes
    3 Posts
    832 Views
    V
    @JKSH Thank you for the response.
  • How to correctly add suggestions for the docs, that actually get reviewed?

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    SGaistS
    Hi, One more thing to add, the account set as responsible is a team account so it means it has several members like Paul. The fact it is shown as not active is just related to the fact that it's not a physical person. There are several others like that :-)
  • JIRA Integration

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    SGaistS
    @aha_1980 Maybe that's because the Qt Project bug tracker is using JIRA. But could also be an attempt to lure people both on [EDIT: Domains removed --JKSH] which is the link behind the "JIRA Tutorial".
  • qtbase CI failures

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    VRoninV
    It wasn't just me than, it was a CI issue: http://lists.qt-project.org/pipermail/development/2018-September/033584.html
  • Start with contributions

    Solved
    3
    0 Votes
    3 Posts
    1k Views
    francescmmF
    Thanks @aha_1980 for the help, that's all I need it! :D
  • Help a newbie with a very minor contribution assistance?

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    aha_1980A
    hi @tpmlinz, and welcome! so have you uploaded your patch already? (link) because that's what Gerrit is all about, discussing code. regarding the reviewers: you can start with git log in the files you touched; you'll see who appears often. you can also Google 'qt maintainers' to find responsible persons for a module. everything else is best discussed in Gerrit i think. thanks for your contribution! Regards.
  • Ideas to optimise QAbstractItemView::dataChanged

    23
    0 Votes
    23 Posts
    8k Views
    kshegunovK
    After some code-mining the above loop should be equivalent to: for (int i = topLeft.row(); i < maxRow; ++i) { const int maxColumn = bottomRight.column() - ((i==maxRow-1) ? 1:0); for (int j = topLeft.column()+ ((i==topLeft.row()) ? 1:0); j < maxColumn; ++j) { d->viewport->update(visualRect(d->model->index(i, j, parent))); } } The updates are compressed trough QWidgetBackingStore::markDirty. I know the docs mention this but I couldn't find it in QCoreApplication::compressEvent so I went spelunking, albeit rather short lived.
  • The best way to express gratitude

    Solved
    7
    3 Votes
    7 Posts
    2k Views
    S
    @SGaist Thanks! I have already posted my question in the forum. Will just wait for it
  • How is gerrit branch merging handled?

    Solved
    2
    0 Votes
    2 Posts
    1k Views
    K
    Merges are done manually from time to time. Right now we are working on finalizing current round of merges between 5.9, 5.10 and 5.11 https://codereview.qt-project.org/#/q/status:open+owner:"Liang+Qi+%253Cliang.qi%2540qt.io%253E",n,z
  • win/wip branch of QtConnectivity

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, This branch being a work in progress, I'd recommend you bring this topic to the interest mailing list. You'll find there Qt Connectivity's developers/maintainers. This forum is more user oriented.
  • Add constants declarations to QT

    Solved
    8
    0 Votes
    8 Posts
    5k Views
    aha_1980A
    For reference: The bugreport resulting from this thread is: https://bugreports.qt.io/browse/QTCREATORBUG-19710 @BKBK: it is good practice to add a link here if the discussion is moved to another place. That way, later visitors can follow it and find more insights. Thanks.
  • Howto include private headers

    Solved
    4
    0 Votes
    4 Posts
    6k Views
    K
    It seems like private headers need to be handled via sync.profile, not qmake