summaryrefslogtreecommitdiff
path: root/core/pim/todo/todoshow.cpp
blob: 4dbc9aaaa04c5b967ae37f535b76db5f4043b04e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#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();
}