Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » C / C++ IDE (CDT) » "Outline": parsing problems with wxWindows EVENT_TABLE's
"Outline": parsing problems with wxWindows EVENT_TABLE's [message #47538] Fri, 25 October 2002 21:14
Eclipse UserFriend
Originally posted by: nospam_ktk.netlabs.org

I am using wxWindows to write applications and in the sourcecode I often find
constructs like:

---snip---
include "cyPlane.h"

#include "cyFrame.h"
#include "cyBrain.h"
#include "cyTask.h"
#include "cyCanvas.h"
#include "cyArrow.h"
#include <wx/colour.h>

BEGIN_EVENT_TABLE( cyPlane, wxScrolledWindow )
EVT_PAINT ( cyPlane::OnPaint )
EVT_RIGHT_DOWN ( cyPlane::OnMouseRightDown )
[...]
END_EVENT_TABLE( )

cyPlane::cyPlane( cyFrame *frame, cyBrain *cybrain, wxWindowID id, const
wxPoint &pos, const wxSize &size )
: wxScrolledWindow((wxWindow *) frame, id, pos, size, wxSUNKEN_BORDER )
{
[...]
---snip---

The outline seems to have problems with the EVENT_TABLE block, after that
block I can't see any classes and methods anymore. Anyone else noticed that?

I wanted to add it to bugzilla but I think it would take at least one hour
until I figure out how to fill in the form there :-) So I wait for that
unless someone of the teams bugs me to do it ;)

cu & thanks

Adrian
Previous Topic:Code Assist, again :-)
Next Topic:parsing compiler error messages
Goto Forum:
  


Current Time: Sat Jul 27 16:57:24 GMT 2024

Powered by FUDForum. Page generated in 0.03442 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top