Browse Source

fixed feedback when file is not saved

merge-requests/365/head
oyvang 11 years ago
parent
commit
6401f94465
  1. 2
      juci/window.cc

2
juci/window.cc

@ -218,6 +218,7 @@ bool Window::SaveFile() {
notebook_.CurrentPagePath()+"\n");
return true;
}
terminal_.PrintMessage("File not saved");
return false;
}
bool Window::SaveFileAs() {
@ -226,5 +227,6 @@ bool Window::SaveFileAs() {
notebook_.CurrentPagePath()+"\n");
return true;
}
terminal_.PrintMessage("File not saved");
return false;
}

Loading…
Cancel
Save