mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
d6665cba42
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1041 a592a061-630c-0410-9148-cb99ea01b6c8
33 lines
616 B
C
33 lines
616 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_)) {
|
|
// 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;
|
|
}
|
|
|