[Bug 69471] New: completion not working with typedefs

Konrad Klimaszewski klimasz at if.pw.edu.pl
Mon Dec 1 21:54:02 UTC 2003


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
     
http://bugs.kde.org/show_bug.cgi?id=69471     
           Summary: completion not working with typedefs
           Product: kdevelop
           Version: unspecified
          Platform: Mandrake RPMs
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: general
        AssignedTo: kdevelop-devel at kdevelop.org
        ReportedBy: klimasz at if.pw.edu.pl


Version:           cvs snapshot 031129 (using KDE KDE 3.1)
Installed from:    Mandrake RPMs
Compiler:          gcc version 3.2.2 (Mandrake Linux 9.1 3.2.2-3mdk) 
OS:          Linux

Code completion doesn't work with typedefs even though I enabled:
Project->Project Options->C++ specific->Code completion->Code completion options->Include Typedefs

example:

class test {
  public:
    test();
    ~test();

    void method(void);
};

typedef test tmp;

int main(int argc, char *argv[])
{
  tmp object;

  object.[CTRL]+[SPACE]

Doesn't work :(

But using:

test object2;

object2.[CTRL]+[SPACE]

Works




More information about the KDevelop-devel mailing list