Remove wrong absolute path for the cp unix command.

Signed-off-by: gregory guy <gregory-tde@laposte.net>
pull/3/head
gregory guy 4 years ago committed by Slávek Banko
parent 9bf530c039
commit df95dcb241
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -138,7 +138,7 @@ PartBase::PartBase (TQWidget * wparent, const char *wname,
if (localbmfile != bmfile) {
kdDebug () << "cp " << bmfile << " " << localbmfile << endl;
TDEProcess p;
p << "/bin/cp" << TQString(TQFile::encodeName (bmfile)) << TQString(TQFile::encodeName (localbmfile));
p << "cp" << TQString(TQFile::encodeName (bmfile)) << TQString(TQFile::encodeName (localbmfile));
p.start (TDEProcess::Block);
}
m_bookmark_manager = new BookmarkManager (localbmfile);

Loading…
Cancel
Save