Skip to content

Qt.io webservices

Talk about the Qt.io web services. Found a bug on any of the services? Missing a feature? Post here!

1.3k Topics 8.8k Posts

QtWS: Super Early Bird Tickets Available!

  • [Solved] waiting for gravatar.com

    2
    0 Votes
    2 Posts
    4k Views
    M

    If gravatar is down the only loss should be the profile images. Glad it worked out :)

  • Editing comments

    4
    0 Votes
    4 Posts
    2k Views
    M

    We have that on the wish list, the comments look and feel should in time be very close to a forum thread (same design, same profile info box, editing etc..) The forum evolved and the comments will follow :)

  • Subscription to forum topics

    6
    0 Votes
    6 Posts
    2k Views
    M

    [quote author="chetankjain" date="1282546061"]ah yes :) my fault i totally missed it in spite of spending so much time on the forum :P[/quote]

    We should have updated this thread but we've all had a rather lazy vacation :) thanks for helping out!

  • 0 Votes
    4 Posts
    2k Views
    ?

    oh cool :)

  • Managing subscriptions

    2
    0 Votes
    2 Posts
    1k Views
    D

    Is it already there. Go to your profile editing and find there View Subscriptions item.

  • Another style for moved topics

    2
    0 Votes
    2 Posts
    2k Views
    G

    Hi Denis Kormalev,

    I have created issue to discuss it and will get back with possible solution.

  • How do I add characters like < to a tag

    3
    0 Votes
    3 Posts
    2k Views
    ?

    ah thanks :)

  • Robot Herder: can request a group

    5
    0 Votes
    5 Posts
    3k Views
    ?

    ok thanks

  • 0 Votes
    3 Posts
    2k Views
    ?

    ok that explains it ... thanks :)

  • 0 Votes
    3 Posts
    2k Views
    ?

    woah, didn't know i'm already in the hall of fame :P thanks for the info :)

  • Order of threads in a category

    2
    0 Votes
    2 Posts
    1k Views
    D

    They are sorted on time of last reply.

  • Ratings count on hover

    2
    0 Votes
    2 Posts
    2k Views
    D

    I think it is just left for future behavior.

  • [Solved] navigating to prev and next thread

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Quoting by selected text

    2
    0 Votes
    2 Posts
    2k Views
    D

    I agree, it will be useful feature here.

  • Gavatar

    3
    0 Votes
    3 Posts
    2k Views
    L

    I agree with OP. I would better have no avatar rather than creating one extra account for that.

  • Adding link is not straight forward

    3
    0 Votes
    3 Posts
    2k Views
    ?

    thanks Gurudutt

  • Issues with site on the Nokia N900.

    7
    0 Votes
    7 Posts
    3k Views
    R

    I'm closing our issue around this. Let me know if the problem still exists and I'll re-open the issue.

  • 4.7.0 beta2 vs beta1

    2
    0 Votes
    2 Posts
    2k Views
    T

    The have been removed; more info here http://labs.trolltech.com/blogs/2010/05/06/qt-47-scope-change-regarding-qt-multimedia/

  • (Un)read topic markers

    3
    0 Votes
    3 Posts
    2k Views
    ?

    @JLP, for now I use a RSS feed reader and this is available there

  • 0 Votes
    7 Posts
    11k Views
    I

    I agree with joe.skb7

    If you are following Java coding standards (getters begin with get - getSomething()) then members can really be named without some kind of prefix, but here it is awkward. (having "this->" before everything produces a lot more visual clutter than m_ or just _)

    If you are writing a library and are concerned about the binary compatibility, then you could go for the d-ptr pattern (like Qt does). This way all private members would be in the Private class instead of the main one and you'd access them as d->name or similar.