"Unpin" the current note so it doesn't appear in every search
| 3514 | |
| 3515 | // "Unpin" the current note so it doesn't appear in every search |
| 3516 | void NixNote::unpinCurrentNote() { |
| 3517 | qint32 lid = tabWindow->currentBrowser()->lid; |
| 3518 | NoteTable ntable(global.db); |
| 3519 | ntable.pinNote(lid, false); |
| 3520 | updateSelectionCriteria(); |
| 3521 | } |
| 3522 | |
| 3523 | |
| 3524 |
nothing calls this directly
no test coverage detected