Exchanges view updates

This commit is contained in:
Andre Jochems
2015-11-30 11:21:55 +01:00
parent 239fd6afaf
commit b091799d44
17 changed files with 195 additions and 209 deletions

View File

@@ -18,7 +18,7 @@ GUIExchangesControl::~GUIExchangesControl()
}
}
void GUIExchangesControl::InitializeExchangesView( GUIExchangesListView* a_pView )
void GUIExchangesControl::initializeExchangesView( GUIExchangesListView* a_pView )
{
if ( a_pView )
{
@@ -35,7 +35,7 @@ void GUIExchangesControl::slotPopulateListView( JsonActiveExchangesParser* a_pAc
if ( m_pExchangesView )
{
QmlExchangesListModel* pExchangesModel = new QmlExchangesListModel( *a_pActiveExchanges );
m_pExchangesView->SetModel( pExchangesModel );
m_pExchangesView->setModel( pExchangesModel );
}
}