summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/editor.cpp
authorzecke <zecke>2003-02-24 13:34:03 (UTC)
committer zecke <zecke>2003-02-24 13:34:03 (UTC)
commitb04ced09167d910e5cab1981bde295e2e8185fee (patch) (unidiff)
tree2623e1553968654b133343ce7333995243216201 /core/pim/datebook2/editor.cpp
parentcfecfd53c433a3b530e4abcef51e81feae3c8641 (diff)
downloadopie-b04ced09167d910e5cab1981bde295e2e8185fee.zip
opie-b04ced09167d910e5cab1981bde295e2e8185fee.tar.gz
opie-b04ced09167d910e5cab1981bde295e2e8185fee.tar.bz2
Add Implementation for Templates, Locations, Descriptions
add some more stuff
Diffstat (limited to 'core/pim/datebook2/editor.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/datebook2/editor.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/core/pim/datebook2/editor.cpp b/core/pim/datebook2/editor.cpp
new file mode 100644
index 0000000..a51aab6
--- a/dev/null
+++ b/core/pim/datebook2/editor.cpp
@@ -0,0 +1,24 @@
1#include "mainwindow.h"
2
3#include "editor.h"
4
5using namespace Datebook;
6
7Editor::Editor( MainWindow* win, QWidget*)
8 : m_win( win )
9{}
10Editor::~Editor() {
11
12}
13DescriptionManager Editor::descriptions()const {
14 return m_win->descriptionManager();
15}
16LocationManager Editor::locations()const {
17 return m_win->locationManager();
18}
19void Editor::setDescriptions( const DescriptionManager& dsc) {
20 m_win->setDescriptionManager( dsc );
21}
22void Editor::setLocations( const LocationManager& loc) {
23 m_win->setLocationManager( loc );
24}