-rw-r--r-- | libopie2/opiepim/ChangeLog | 1 | ||||
-rw-r--r-- | libopie2/opiepim/backend/opimaccessbackend.h | 1 |
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,18 +1,19 @@ | |||
1 | 2005-03.19 Stefan Eilers <stefan@eilers-online.net> | 1 | 2005-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 | ||
3 | 2005-03-18 Stefan Eilers <stefan@eilers-online.net> | 4 | 2005-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!) |
5 | 2005-01-16 Stefan Eilers <stefan@eilers-online.net> | 6 | 2005-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. |
8 | 2005-01-03 Stefan Eilers <stefan@eilers-online.net> | 9 | 2005-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 |
11 | 2004-12-28 Stefan Eilers <stefan@eilers-online.net> | 12 | 2004-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.. |
15 | * Fixing bug #1501 | 16 | * Fixing bug #1501 |
16 | 2004-11-23 Stefan Eilers <stefan@eilers-online.net> | 17 | 2004-11-23 Stefan Eilers <stefan@eilers-online.net> |
17 | * Implement fast and full featured version of sorted() for addressbook | 18 | * Implement fast and full featured version of sorted() for addressbook |
18 | * Implement generic queryByExample for all Addressboook backends. It allows incremental search. | 19 | * Implement generic queryByExample for all Addressboook backends. It allows incremental search. |
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 | |||
@@ -129,32 +129,33 @@ protected: | |||
129 | uint readAhead()const; | 129 | uint readAhead()const; |
130 | //@} | 130 | //@} |
131 | 131 | ||
132 | private: | 132 | 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 | ||
140 | template <class T> | 140 | template <class T> |
141 | OPimAccessBackend<T>::OPimAccessBackend(int acc) | 141 | OPimAccessBackend<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 | } |
146 | template <class T> | 147 | template <class T> |
147 | OPimAccessBackend<T>::~OPimAccessBackend() { | 148 | OPimAccessBackend<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 |
157 | */ | 158 | */ |
158 | template <class T> | 159 | template <class T> |
159 | UIDArray OPimAccessBackend<T>::matchRegexp( const QRegExp& reg )const { | 160 | UIDArray OPimAccessBackend<T>::matchRegexp( const QRegExp& reg )const { |
160 | UIDArray all_rec = allRecords(); | 161 | UIDArray all_rec = allRecords(); |