! adds a new Note to the project. */
| 2024 | adds a new Note to the project. |
| 2025 | */ |
| 2026 | void MainWin::newNotes() { |
| 2027 | Note* notes = new Note(i18n("Note")); |
| 2028 | this->addAspectToProject(notes); |
| 2029 | } |
| 2030 | |
| 2031 | /*! |
| 2032 | returns a pointer to a \c Spreadsheet object, if the currently active Mdi-Subwindow |
nothing calls this directly
no test coverage detected