Skip to content

Commit

Permalink
Re #9489 Change logs to info in function name
Browse files Browse the repository at this point in the history
  • Loading branch information
raquelalvarezbanos committed Mar 4, 2015
1 parent bffa425 commit 1d9175f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -51,8 +51,8 @@ namespace CustomInterfaces
/// Load new data and update the view accordingly
void load();

/// Updates the list of logs user can choose from
void updateAvailableLogs();
/// Updates the list of logs and number of periods
void updateAvailableInfo();

private:
/// View which the object works with
Expand Down
Expand Up @@ -28,7 +28,7 @@ namespace CustomInterfaces
m_view->initialize();

connect(m_view, SIGNAL(loadRequested()), SLOT(load()));
connect(m_view, SIGNAL(firstRunSelected()), SLOT(updateAvailableLogs()));
connect(m_view, SIGNAL(firstRunSelected()), SLOT(updateAvailableInfo()));
}

void ALCDataLoadingPresenter::load()
Expand Down Expand Up @@ -78,7 +78,7 @@ namespace CustomInterfaces
m_view->restoreCursor();
}

void ALCDataLoadingPresenter::updateAvailableLogs()
void ALCDataLoadingPresenter::updateAvailableInfo()
{
Workspace_sptr loadedWs;

Expand Down

0 comments on commit 1d9175f

Please sign in to comment.