fixes and updates

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@242 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2006-07-17 13:09:35 +00:00
parent 055a795cb3
commit aefcdf2a24
6 changed files with 352 additions and 15 deletions

View File

@@ -530,19 +530,6 @@ bool flpImport::tryImport( trackContainer * _tc )
_tc->eng()->getProjectNotes()->setText( out );
outstring = "";
#if 0
#warning HACK !!! - replace by integrating unrtf-source
system(
QString( "echo \"%1\" > /tmp/flp_rtf_comment.rtf ; unrtf -n --html /tmp/flp_rtf_comment.rtf > /tmp/flp_rtf_comment.html" ).arg( text ).ascii() );
QFile f( "/tmp/flp_rtf_comment.html" );
f.open( IO_ReadOnly );
char * out = new char[f.size()+1];
f.readBlock( out, f.size() );
_tc->eng()->getProjectNotes()->setText( out );
f.remove();
delete[] out;
#endif
break;
}