summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/tododb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie/tododb.cpp b/libopie/tododb.cpp
index 91331d0..e440dfc 100644
--- a/libopie/tododb.cpp
+++ b/libopie/tododb.cpp
@@ -133,17 +133,17 @@ ToDoDB::ToDoDB(const QString &fileName = QString::null, ToDoResource *res ){
133 }else if(res == 0 ){ // let's create a ToDoResource for xml 133 }else if(res == 0 ){ // let's create a ToDoResource for xml
134 res = new FileToDoResource(); 134 res = new FileToDoResource();
135 } 135 }
136 m_res = res; 136 m_res = res;
137 load(); 137 load();
138} 138}
139ToDoDB::~ToDoDB() 139ToDoDB::~ToDoDB()
140{ 140{
141 141 delete m_res;
142} 142}
143QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from, const QDate &to, 143QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from, const QDate &to,
144 bool all ) 144 bool all )
145{ 145{
146 QValueList<ToDoEvent> events; 146 QValueList<ToDoEvent> events;
147 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){ 147 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){
148 if( (*it).hasDate() ){ 148 if( (*it).hasDate() ){
149 if( (*it).date() >= from && (*it).date() <= to ) 149 if( (*it).date() >= from && (*it).date() <= to )
@@ -194,17 +194,17 @@ void ToDoDB::setFileName(const QString &file )
194 m_fileName =file; 194 m_fileName =file;
195} 195}
196QString ToDoDB::fileName()const 196QString ToDoDB::fileName()const
197{ 197{
198 return m_fileName; 198 return m_fileName;
199} 199}
200void ToDoDB::load() 200void ToDoDB::load()
201{ 201{
202 202 m_todos = m_res->load( m_fileName );
203} 203}
204bool ToDoDB::save() 204bool ToDoDB::save()
205{ 205{
206 return m_res->save( m_fileName, m_todos ); 206 return m_res->save( m_fileName, m_todos );
207} 207}
208 208
209 209
210 210