Browse Source

fixed feedback when file is not saved

master
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"); notebook_.CurrentPagePath()+"\n");
return true; return true;
} }
terminal_.PrintMessage("File not saved");
return false; return false;
} }
bool Window::SaveFileAs() { bool Window::SaveFileAs() {
@ -226,5 +227,6 @@ bool Window::SaveFileAs() {
notebook_.CurrentPagePath()+"\n"); notebook_.CurrentPagePath()+"\n");
return true; return true;
} }
terminal_.PrintMessage("File not saved");
return false; return false;
} }

Loading…
Cancel
Save