mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
33 lines
624 B
C++
33 lines
624 B
C++
|
#include <config.h>
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma implementation
|
||
|
#endif
|
||
|
|
||
|
#include "path.h"
|
||
|
|
||
|
int Path::pop()
|
||
|
{
|
||
|
if (popped_) {
|
||
|
// should throw an exception
|
||
|
// throw logical_error();
|
||
|
// The use of WriteFSAlerrt makes this impossible
|
||
|
// to inline.
|
||
|
//WriteFSAlert(_("Error: Dir already popped: "),
|
||
|
// pushedDir_);
|
||
|
return 0;
|
||
|
}
|
||
|
if (lyx::chdir(pushedDir_.c_str())) {
|
||
|
// should throw an exception
|
||
|
// throw DirChangeError();
|
||
|
// The use of WriteFSAlert makes this impossible
|
||
|
// to inline.
|
||
|
//WriteFSAlert(
|
||
|
// _("Error: Could not change to directory: "),
|
||
|
// pushedDir_);
|
||
|
}
|
||
|
popped_ = true;
|
||
|
return 0;
|
||
|
}
|
||
|
|