hello,

in fluid 1.1.7 how do I make class functions public? All my 'public' flags are 
set but the generated code is:

class Annotate {
  Annotate();
  ...
};


To make it work I need to open up the generated .H file and change to:

class Annotate {
  public:
  Annotate();
  ...
};


Am I missing something?
Richard
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to