Another bugfix backport from HEAD... (Yes, I know I should have looked at KDE_2_0_BRANCH earlier...) notearray.h used to have class NoteArray { private: [...] struct noteCmd { [...] } noteCmd *data; } But expected files including notearray.h to know about the members of the noteCmd struct (not *data, the structure of noteCmd itself). Picky compilers (such as gcc 2.96) don't give code access to the structure of structs declared private. LLaP bero