summaryrefslogtreecommitdiff
path: root/core/pim/todo/templatedialogimpl.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/todo/templatedialogimpl.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/templatedialogimpl.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/pim/todo/templatedialogimpl.cpp b/core/pim/todo/templatedialogimpl.cpp
index 63d8107..c9ad3d0 100644
--- a/core/pim/todo/templatedialogimpl.cpp
+++ b/core/pim/todo/templatedialogimpl.cpp
@@ -12,44 +12,44 @@ using namespace Todo;
namespace {
class TemplateListItem : public QListViewItem {
public:
TemplateListItem( QListView*,
const QString& name,
- const OTodo& );
+ const OPimTodo& );
~TemplateListItem();
- OTodo event()const;
+ OPimTodo event()const;
QString text()const;
void setText(const QString& str );
- void setEvent( const OTodo& );
+ void setEvent( const OPimTodo& );
private:
QString m_name;
- OTodo m_ev;
+ OPimTodo m_ev;
};
/* implementation */
TemplateListItem::TemplateListItem( QListView* view,
const QString& text,
- const OTodo& ev )
+ const OPimTodo& ev )
: QListViewItem( view ), m_name( text ), m_ev( ev )
{
QListViewItem::setText(0, m_name );
}
TemplateListItem::~TemplateListItem() {}
- OTodo TemplateListItem::event() const {
+ OPimTodo TemplateListItem::event() const {
return m_ev;
}
QString TemplateListItem::text()const {
return m_name;
}
void TemplateListItem::setText( const QString& str ) {
QListViewItem::setText(0, str );
m_name = str;
}
- void TemplateListItem::setEvent( const OTodo& ev) {
+ void TemplateListItem::setEvent( const OPimTodo& ev) {
m_ev = ev;
}
}
TemplateDialogImpl::TemplateDialogImpl( MainWindow* win,
TemplateManager* man )
@@ -69,13 +69,13 @@ TemplateDialogImpl::TemplateDialogImpl( MainWindow* win,
}
TemplateDialogImpl::~TemplateDialogImpl() {
}
void TemplateDialogImpl::slotAdd() {
QString str = QWidget::tr("New Template %1").arg( listView()->childCount() );
- OTodo ev;
+ OPimTodo ev;
m_man->addEvent(str, ev);
new TemplateListItem( listView(), str, ev );
}
void TemplateDialogImpl::slotRemove() {
if (!listView()->currentItem() )
return;
@@ -89,13 +89,13 @@ void TemplateDialogImpl::slotRemove() {
}
void TemplateDialogImpl::slotEdit() {
if ( !listView()->currentItem() )
return;
TemplateListItem* item = static_cast<TemplateListItem*>( listView()->currentItem() );
- OTodo ev = m_win->currentEditor()->edit( m_win, item->event() );
+ OPimTodo ev = m_win->currentEditor()->edit( m_win, item->event() );
if ( m_win->currentEditor()->accepted() ) {
item->setEvent( ev );
m_man->removeEvent( item->text() );
m_man->addEvent( item->text(), ev );
}
}