Changeset 44:e087b878bc49 in SMSSender
- Timestamp:
- Jan 28, 2010 3:54:36 PM (12 years ago)
- Branch:
- 3.0
- Convert:
- svn:3639001d-8e34-449c-bb86-3782b86c4877/branches/3.0@43
- Files:
-
- 9 deleted
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
gateways/SwisscomXtraZone/SwisscomXtraZone.pro
r43 r44 12 12 LIBS += -L../../lib/ 13 13 # Attend the order! 14 LIBS += -ltntdb \ 15 -linterfaces \ 14 LIBS += -linterfaces \ 16 15 -lgateway \ 17 16 -linterfaces \ -
smssender.pro
r43 r44 8 8 sql 9 9 LIBS += -Llib/ 10 LIBS += -ltntdb \ 11 -lcrypto++ \ 10 LIBS += -lcrypto++ \ 12 11 -ldatatypes \ 13 12 -lutils \ -
src/business/BCGatewayManager.cpp
r40 r44 11 11 12 12 #include "BCLibraryLoader.h" 13 #include "../persistence/PersistenceFactory.h" 13 14 14 15 BCGatewayManager* BCGatewayManager::instance_=0; … … 22 23 23 24 foreach (IGateway* gateway, BCLibraryLoader::instance()->gateways()) { 25 gateway->setDefaultStorage(PersistenceFactory::instance()->getStorage()); 24 26 gatewayList_.insert(gateway->name(), gateway); 25 27 } -
src/main.cpp
r42 r44 3 3 #include <QtGui> 4 4 #include <QApplication> 5 6 #include <cxxtools/loginit.h>7 5 8 6 #include <QString> … … 50 48 51 49 int main(int argc, char *argv[]){ 52 log_init();53 54 50 QApplication a(argc, argv); 55 51 -
src/persistence/storage/DAAccountListManager.cpp
r43 r44 36 36 37 37 // TODO: What if this gateway is NULL (is not loaded)? 38 gateway->setDefaultStorage(storage());39 40 38 IAccount* account = gateway->createAccountInstance(); 41 39 account->setId(accountId); -
src/ui/models/accountmodel.cpp
r43 r44 7 7 { 8 8 connect(BCAccountManager::instance(), SIGNAL(accountAdded(IAccount*)), 9 this, SLOT(account DataChanged(IAccount*)));9 this, SLOT(accountUpdated(IAccount*))); 10 10 connect(BCAccountManager::instance(), SIGNAL(accountDataChanged(IAccount*)), 11 this, SLOT(account DataChanged(IAccount*)));11 this, SLOT(accountUpdated(IAccount*))); 12 12 connect(BCAccountManager::instance(), SIGNAL(accountRemoved(IAccount*)), 13 this, SLOT(account DataChanged(IAccount*)));13 this, SLOT(accountUpdated(IAccount*))); 14 14 } 15 15 AccountModel::~AccountModel() { 16 16 disconnect(BCAccountManager::instance(), SIGNAL(accountAdded(IAccount*)), 17 this, SLOT(account DataChanged(IAccount*)));17 this, SLOT(accountUpdated(IAccount*))); 18 18 disconnect(BCAccountManager::instance(), SIGNAL(accountDataChanged(IAccount*)), 19 this, SLOT(account DataChanged(IAccount*)));19 this, SLOT(accountUpdated(IAccount*))); 20 20 disconnect(BCAccountManager::instance(), SIGNAL(accountRemoved(IAccount*)), 21 this, SLOT(account DataChanged(IAccount*)));21 this, SLOT(accountUpdated(IAccount*))); 22 22 } 23 23 … … 27 27 QModelIndex idx_start = index(row, 0); 28 28 QModelIndex idx_end = index(row, COL_COUNT); 29 emit dataChanged(idx_start, idx_end); 29 30 if (idx_start.isValid() && idx_end.isValid()) { 31 emit dataChanged(idx_start, idx_end); 32 } else { 33 reset(); 34 } 30 35 } 31 36 -
ui_vcaccountlist.h
r43 r44 2 2 ** Form generated from reading ui file 'vcaccountlist.ui' 3 3 ** 4 ** Created: T ue Jan 26 20:40:5920104 ** Created: Thu Jan 28 15:19:16 2010 5 5 ** by: Qt User Interface Compiler version 4.5.2 6 6 ** -
ui_vcaddressbook.h
r43 r44 2 2 ** Form generated from reading ui file 'vcaddressbook.ui' 3 3 ** 4 ** Created: T ue Jan 26 20:40:5920104 ** Created: Thu Jan 28 15:19:16 2010 5 5 ** by: Qt User Interface Compiler version 4.5.2 6 6 ** -
ui_vceditaccount.h
r43 r44 2 2 ** Form generated from reading ui file 'vceditaccount.ui' 3 3 ** 4 ** Created: T ue Jan 26 20:40:5920104 ** Created: Thu Jan 28 15:19:16 2010 5 5 ** by: Qt User Interface Compiler version 4.5.2 6 6 ** -
ui_vceditcontact.h
r43 r44 2 2 ** Form generated from reading ui file 'vceditcontact.ui' 3 3 ** 4 ** Created: T ue Jan 26 20:40:5920104 ** Created: Thu Jan 28 15:19:16 2010 5 5 ** by: Qt User Interface Compiler version 4.5.2 6 6 ** -
ui_vceditgroup.h
r43 r44 2 2 ** Form generated from reading ui file 'vceditgroup.ui' 3 3 ** 4 ** Created: T ue Jan 26 20:40:5920104 ** Created: Thu Jan 28 15:19:16 2010 5 5 ** by: Qt User Interface Compiler version 4.5.2 6 6 ** -
ui_vcmain.h
r43 r44 2 2 ** Form generated from reading ui file 'vcmain.ui' 3 3 ** 4 ** Created: T ue Jan 26 20:40:5920104 ** Created: Thu Jan 28 15:19:16 2010 5 5 ** by: Qt User Interface Compiler version 4.5.2 6 6 ** -
ui_vcsettings.h
r43 r44 2 2 ** Form generated from reading ui file 'vcsettings.ui' 3 3 ** 4 ** Created: T ue Jan 26 20:40:5920104 ** Created: Thu Jan 28 15:19:16 2010 5 5 ** by: Qt User Interface Compiler version 4.5.2 6 6 **
Note: See TracChangeset
for help on using the changeset viewer.