diff -r 316e9237794c -r 8fb5b3956b3e noteobj.cpp --- a/noteobj.cpp Tue Oct 23 13:05:22 2007 +0000 +++ b/noteobj.cpp Wed Oct 24 12:21:24 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; }