コード例 #1
0
ファイル: note.cpp プロジェクト: xuyan505/QOwnNotes
Note Note::fetchByFileName(QString fileName, int noteSubFolderId) {
    Note note;

    // get the active note subfolder id if none was set
    if (noteSubFolderId == -1) {
        noteSubFolderId = NoteSubFolder::activeNoteSubFolderId();
    }

    note.fillByFileName(fileName, noteSubFolderId);
    return note;
}
コード例 #2
0
ファイル: note.cpp プロジェクト: guija/QOwnNotes
Note Note::fetchByFileName(QString fileName) {
    Note note;
    note.fillByFileName(fileName);
    return note;
}