"Pin" the current note. This makes sure it appears in all searches
| 3503 | |
| 3504 | // "Pin" the current note. This makes sure it appears in all searches |
| 3505 | void NixNote::pinCurrentNote() { |
| 3506 | qint32 lid = tabWindow->currentBrowser()->lid; |
| 3507 | NoteTable ntable(global.db); |
| 3508 | ntable.pinNote(lid, true); |
| 3509 | updateSelectionCriteria(); |
| 3510 | } |
| 3511 | |
| 3512 | |
| 3513 |
nothing calls this directly
no test coverage detected