Remove wrong absolute path for the cp unix command.

Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit df95dcb241)
r14.0.x
gregory guy 5 years ago committed by Slávek Banko
parent 7290d409de
commit 9e5e9c28f6
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