diff -r 34520279e086 -r 497f19b3c1fe noteobj.cpp --- a/noteobj.cpp Tue Jul 17 11:20:20 2007 +0000 +++ b/noteobj.cpp Tue Nov 06 13:54:41 2007 +0000 @@ -46,6 +46,11 @@ QString NoteObj::getNoteASCII() { + return getNoteASCII (QString(""),80); +} + +QString NoteObj::getNoteASCII(const QString &indent, const int &width) +{ QString r=note; // Remove all ... @@ -79,6 +84,12 @@ rx.setPattern ("""); r.replace (rx,"\""); +/* FIXME + if (fonthint !="fixed") + { + // wrap text at width + } +*/ return r; }