class KWBookmark {
public:
KWBookmark();
int xPos;
int yPos;
KWCursor cursor;
QString Name;
};
/**
The KWrite text editor widget. It has many options, document/view
architecture and syntax highlight.
@author Jochen Wilhelmy
*/
KWBookmark::KWBookmark() {
cursor.setY(-1); //mark bookmark as invalid
}