notes/notesui/noteseditor/src/noteseditor.cpp
changeset 45 b6db4fd4947b
parent 18 c198609911f9
child 55 2c54b51f39c4
equal deleted inserted replaced
23:fd30d51f876b 45:b6db4fd4947b
    42 	Constructor.
    42 	Constructor.
    43 
    43 
    44 	\param parent QObject pointer.
    44 	\param parent QObject pointer.
    45  */
    45  */
    46 NotesEditor::NotesEditor(QObject *parent)
    46 NotesEditor::NotesEditor(QObject *parent)
    47 :QObject(parent),d_ptr(new NotesEditorPrivate(0, parent))
    47 :QObject(parent),d_ptr(new NotesEditorPrivate(0, this))
    48 {
    48 {
    49 	// Nothing yet.
    49 	// Nothing yet.
    50 }
    50 }
    51 
    51 
    52 
    52 
    55 
    55 
    56 	\param agendaUtil pointer to agenda utility
    56 	\param agendaUtil pointer to agenda utility
    57 	\param parent QObject pointer.
    57 	\param parent QObject pointer.
    58  */
    58  */
    59 NotesEditor::NotesEditor(AgendaUtil *agendaUtil, QObject *parent)
    59 NotesEditor::NotesEditor(AgendaUtil *agendaUtil, QObject *parent)
    60 :QObject(parent), d_ptr(new NotesEditorPrivate(agendaUtil, parent))
    60 :QObject(parent), d_ptr(new NotesEditorPrivate(agendaUtil, this))
    61 {
    61 {
    62 	// Nothing yet.
    62 	// Nothing yet.
    63 }
    63 }
    64 
    64 
    65 /*!
    65 /*!