summaryrefslogtreecommitdiff
path: root/core/pim/todo/quickedit.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/todo/quickedit.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/quickedit.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/pim/todo/quickedit.cpp b/core/pim/todo/quickedit.cpp
index edcd48a..16fc53a 100644
--- a/core/pim/todo/quickedit.cpp
+++ b/core/pim/todo/quickedit.cpp
@@ -1,22 +1,21 @@
-#include "mainwindow.h"
#include "quickedit.h"
using namespace Todo;
// not so interesting part base Implementation
QuickEdit::QuickEdit(MainWindow* main )
: m_main( main ) {
m_sig = new QSignal();
}
QuickEdit::~QuickEdit() {
delete m_sig;
}
QSignal* QuickEdit::signal() {
return m_sig;
}
MainWindow* QuickEdit::mainWindow() {
return m_main;
}
void QuickEdit::commit() {
m_sig->activate();
}