~mzanetti/reminders-app/edit-note-improvements

« back to all changes in this revision

Viewing changes to src/libqtevernote/jobs/savenotejob.cpp

clean up debug prints.

Approved by Riccardo Padovani, Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include "savenotejob.h"
22
22
#include "note.h"
23
23
 
24
 
#include <QDebug>
25
 
 
26
24
SaveNoteJob::SaveNoteJob(Note *note, QObject *parent) :
27
25
    NotesStoreJob(parent)
28
26
{
86
84
        note.attributes.reminderDoneTime = m_note->reminderDoneTime().toMSecsSinceEpoch();
87
85
        note.attributes.__isset.reminderDoneTime = true;
88
86
 
89
 
        qDebug() << "*** needs content sync" << m_note->needsContentSync();
90
87
        if (m_note->needsContentSync()) {
91
88
            note.content = m_note->enmlContent().toStdString();
92
89
            note.__isset.content = true;