summaryrefslogtreecommitdiff
path: root/core/pim/datebook/noteentryimpl.cpp
blob: 0e459856b9f8cab82dfefe568f04607b11bac1cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "noteentryimpl.h"
#include "qstring.h"
#include "qmultilinedit.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);
}