summaryrefslogtreecommitdiff
path: root/core/pim/todo/todoshow.cpp
blob: 596202859debe9be6d59211e8ed8f351b29436a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

#include "mainwindow.h"
#include "todoshow.h"

using namespace Todo;

TodoShow::TodoShow(MainWindow* win) {
    m_win = win;
}
TodoShow::~TodoShow() {
}
void TodoShow::escapeView() {
    if (m_win )
        m_win->slotReturnFromView();
}

void TodoShow::showNext() {
    if (m_win)
        m_win->slotShowNext();
}
void TodoShow::showPrev() {
    if (m_win)
        m_win->slotShowPrev();
}