summaryrefslogtreecommitdiff
path: root/core/pim/datebook/noteentryimpl.cpp
blob: 14fe98eeddada505b64d0c573c8569948b4d92ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "noteentryimpl.h"
#include "qlabel.h"
#include "onoteedit.h"

NoteEntry::NoteEntry(const QString &title, const QString &noteStr,
		     QWidget* parent, const char* name, bool modal,
		     WFlags fl) :
  NoteEntryBase(parent, name, modal, fl) {


  eventLabel->setText(title);
  note->setText(noteStr);
  int l=note->length();
  note->setCursorPosition(l,l,false);
}