KDevelop V1.0 Bugs

Gordon Tyler gtyler at iafrica.com
Wed Dec 8 11:53:27 GMT 1999


--------------------
- Not all functions can be accessed in source

  declartion looks like

  class foo {

      typedef struct {
                       void* pvData;
                       void* pvNext;
                       void* pvPrev;
                     } LIST;

      typedef LIST *PLIST;

          :

      PLIST getList ( );

          :
             };

  definition in source

   foo::PLIST getList ( ) { }


When the function is selected in classviewer always the decleartion file is
called and not the source file.

-------------------

You're missing the classname specifier for the function name. It should look
like this:

foo::PLIST foo::getList() {}

Ciao,
Gordon






More information about the KDevelop mailing list