Skip to content

Commit

Permalink
Correct warnings refs #3641
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Oct 24, 2011
1 parent 2dc29d9 commit 9761a96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#define MANTIDQTCUSTOMINTERFACES_LOG_PRESENTER_H

#include "MantidQtCustomInterfaces/Updateable.h"
#include "MantidQtCustomInterfaces/LogView.h"

namespace MantidQt
{
Expand Down Expand Up @@ -34,6 +33,7 @@ namespace MantidQt
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class LoanedMemento;
class LogView;
class DLLExport LogPresenter : public Updateable
{
public:
Expand All @@ -42,8 +42,8 @@ namespace MantidQt
void update();
void acceptView(LogView* view);
private:
LogView* m_view;
LoanedMemento& m_WsMemento;
LogView* m_view;
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/MantidQt/CustomInterfaces/src/LogPresenter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace MantidQt
size_t proposedSize = logValues.size();
size_t existingSize = existingLogData.size();
LogDataMap::iterator it = logValues.begin();
int count = 0;
size_t count = 0;
std::vector<std::string> newLogValues(proposedSize);
while(it != logValues.end())
{
Expand Down

0 comments on commit 9761a96

Please sign in to comment.