Changeset 71:415b45c71663 in SMSSender for src/persistence/storage/DAStorage.cpp
- Timestamp:
- Feb 7, 2010 10:17:45 PM (12 years ago)
- Branch:
- 3.0
- Convert:
- svn:3639001d-8e34-449c-bb86-3782b86c4877/branches/3.0@70
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/persistence/storage/DAStorage.cpp
r63 r71 17 17 #include <iaccount.h> 18 18 19 #include <StdExceptions.h> 20 #include <StorageExceptions.h> 21 22 #include <BCContact.h> 23 #include <BCBinary.h> 24 #include <BCGroup.h> 19 #include <stdexceptions.h> 20 #include <persistence/storageexceptions.h> 21 22 #include <scontact.h> 23 #include <sgroup.h> 25 24 #include <sshortcut.h> 26 #include " ../../business/BCSettings.h"27 #include " ../../business/BCContactManager.h"25 #include "business/BCSettings.h" 26 #include "business/BCContactManager.h" 28 27 29 28 #include <typeconvert.h> … … 127 126 128 127 IContact* DAStorage::readContact(int contactId){ 129 IContact* contact = new BCContact();128 IContact* contact = new SContact(); 130 129 131 130 QSqlQuery query = createQuery(); … … 150 149 151 150 IGroup* DAStorage::readGroup(int groupId){ 152 IGroup* group = new BCGroup();151 IGroup* group = new SGroup(); 153 152 154 153 QSqlQuery query = createQuery();
Note: See TracChangeset
for help on using the changeset viewer.