lyx_mirror/src/support/path.C
Lars Gullik Bjønnes d6665cba42 get rid of dead code, some new functions constify variables.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1041 a592a061-630c-0410-9148-cb99ea01b6c8
2000-09-26 13:54:57 +00:00

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;
}