diff options
Diffstat (limited to 'lib/gui/elistbox.h')
| -rw-r--r-- | lib/gui/elistbox.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/gui/elistbox.h b/lib/gui/elistbox.h index 4c06e288..d5464868 100644 --- a/lib/gui/elistbox.h +++ b/lib/gui/elistbox.h @@ -19,7 +19,9 @@ public: to stay on the same data, however when the current item is removed, this won't work. you'll be notified anyway. */ - +#ifndef SWIG +protected: + friend class eListbox; virtual void cursorHome()=0; virtual void cursorEnd()=0; virtual int cursorMove(int count=1)=0; @@ -39,6 +41,7 @@ public: /* the following functions always refer to the selected item */ virtual void paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected)=0; +#endif }; class eListbox: public eWidget |
