imports.cpp
changeset 393 053b8645e3e9
parent 377 5391ab620c95
child 570 ab83f030285e
     1.1 --- a/imports.cpp	Mon Oct 16 12:42:54 2006 +0000
     1.2 +++ b/imports.cpp	Wed Oct 18 10:45:00 2006 +0000
     1.3 @@ -1,7 +1,3 @@
     1.4 -#include <QMessageBox>
     1.5 -//Added by qt3to4:
     1.6 -#include <QTextStream>
     1.7 -
     1.8  #include "file.h"
     1.9  #include "imports.h"
    1.10  #include "linkablemapobj.h"
    1.11 @@ -15,7 +11,7 @@
    1.12  ImportBase::ImportBase()
    1.13  {
    1.14  	bool ok;
    1.15 -    tmpDir.setPath (makeUniqueDir(ok,"/tmp/vym-XXXXXX"));
    1.16 +    tmpDir.setPath (makeUniqueDir(ok,"/tmp/vym-import-XXXXXX"));
    1.17  	if (!tmpDir.exists() || !ok)
    1.18  		QMessageBox::critical( 0, QObject::tr( "Error" ),
    1.19  					   QObject::tr("Couldn't access temporary directory\n"));
    1.20 @@ -82,8 +78,7 @@
    1.21  			lines += stream.readLine(); // line of text excluding '\n'
    1.22  		file.close();
    1.23  	}
    1.24 -	// FIXME
    1.25 -	// Generate vym from broken bookmarks above...
    1.26 +	// TODO Generate vym from broken bookmarks above...
    1.27  
    1.28  	return true;
    1.29  }