summaryrefslogtreecommitdiff
path: root/libopie2
Unidiff
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/ChangeLog1
-rw-r--r--libopie2/opiepim/backend/opimaccessbackend.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/libopie2/opiepim/ChangeLog b/libopie2/opiepim/ChangeLog
index a1b4db0..84517fb 100644
--- a/libopie2/opiepim/ChangeLog
+++ b/libopie2/opiepim/ChangeLog
@@ -1,14 +1,15 @@
12005-03.19 Stefan Eilers <stefan@eilers-online.net> 12005-03.19 Stefan Eilers <stefan@eilers-online.net>
2 * Minor update for sorted(). Now ignoring any category search if "DoNotShowWithCategory" filter is activated. 2 * Minor update for sorted(). Now ignoring any category search if "DoNotShowWithCategory" filter is activated.
3 * Fixing uninitialized member variable, caused crash of backend
32005-03-18 Stefan Eilers <stefan@eilers-online.net> 42005-03-18 Stefan Eilers <stefan@eilers-online.net>
4 * Rewrote generic sorted filter and added filter for "DoNotShowWithCategory", needed by addressbook (other filters need to be added!) 5 * Rewrote generic sorted filter and added filter for "DoNotShowWithCategory", needed by addressbook (other filters need to be added!)
52005-01-16 Stefan Eilers <stefan@eilers-online.net> 62005-01-16 Stefan Eilers <stefan@eilers-online.net>
6 * Added new OPimEventSortVector class, improved OPimSortVector 7 * Added new OPimEventSortVector class, improved OPimSortVector
7 * OPimAccessBackend now supports generic sorting. 8 * OPimAccessBackend now supports generic sorting.
82005-01-03 Stefan Eilers <stefan@eilers-online.net> 92005-01-03 Stefan Eilers <stefan@eilers-online.net>
9 * Fixing bug in API documentation 10 * Fixing bug in API documentation
10 * Moving hasQuerySettings() and querySettings() to OPimAccessTemplate to be available for all frontends 11 * Moving hasQuerySettings() and querySettings() to OPimAccessTemplate to be available for all frontends
112004-12-28 Stefan Eilers <stefan@eilers-online.net> 122004-12-28 Stefan Eilers <stefan@eilers-online.net>
12 * Make improved query by example accessable via frontend 13 * Make improved query by example accessable via frontend
13 * Some API documentation improvement 14 * Some API documentation improvement
14 * Cleanup of backend api.. 15 * Cleanup of backend api..
diff --git a/libopie2/opiepim/backend/opimaccessbackend.h b/libopie2/opiepim/backend/opimaccessbackend.h
index 6666fd6..71f81f4 100644
--- a/libopie2/opiepim/backend/opimaccessbackend.h
+++ b/libopie2/opiepim/backend/opimaccessbackend.h
@@ -133,24 +133,25 @@ private:
133 OPimAccessBackendPrivate *d; 133 OPimAccessBackendPrivate *d;
134 Frontend* m_front; 134 Frontend* m_front;
135 uint m_read; 135 uint m_read;
136 int m_acc; 136 int m_acc;
137 137
138}; 138};
139 139
140template <class T> 140template <class T>
141OPimAccessBackend<T>::OPimAccessBackend(int acc) 141OPimAccessBackend<T>::OPimAccessBackend(int acc)
142 : m_acc( acc ) 142 : m_acc( acc )
143{ 143{
144 m_front = 0l; 144 m_front = 0l;
145 m_read = 20;
145} 146}
146template <class T> 147template <class T>
147OPimAccessBackend<T>::~OPimAccessBackend() { 148OPimAccessBackend<T>::~OPimAccessBackend() {
148 149
149} 150}
150 151
151/* 152/*
152 * Slow but default matchRegexp Implementation 153 * Slow but default matchRegexp Implementation
153 * Create a Big Enough QArray and then iterate 154 * Create a Big Enough QArray and then iterate
154 * over all Records and matchRegexp them. 155 * over all Records and matchRegexp them.
155 * At the end we will resize the array to the actual 156 * At the end we will resize the array to the actual
156 * number of items 157 * number of items