Hi,


    And second, why autocompletion doesn't work for "d" member in the next
    example:

    In header:

    class Test {
    public:
         Test();

         void doIt();

    private:
         Q_DISABLE_COPY( Test )

         class TestPrivate;
         QScopedPointer< TestPrivate > d;
    };

    In source:

    class Test::TestPrivate {
    public
         QString m_string;
    };

    Test::Test()
         :    d( new TestPrivate )
    {
    }

    void
    Test::doIt()
    {
         qDebug() << d-> // And here autocompletion doesn't work. Why?
    }


Works here with 2.5 and 2.6. Which version of Qt Creator do you use?

2.5.2

_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/qt-creator

Reply via email to