Please consider the following case.
I have the following code in "myframe.h".
#ifndef MYFRAME_H_INCLUDED
#define MYFRAME_H_INCLUDED
#include "wx/wx.h"
class MyFrame: public wxFrame
{
public:
MyFrame(const wxString& title, const wxPoint& pos, const wxSize&
size);
void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
DECLARE_EVENT_TABLE()
};
#endif
"myframe.h" is included in a "cpp" file. Now when I do
"semantic-ia-complete-symbol-menu" on a "wxMenu" object, getting error
"possible metatype recursion for wxMenu" and "Wrong type argument
listp".
Attaching the "cpp" file and emacs initialization file for wxWidgets.
Unfortunately, I can't get a back-trace. "M-x
semantic-debug-idle-function" and "M-x semantic-debug-idle-work-function
" is not doing anything after getting the error.
Thanks
Navaneeth
|