Skip to content

Commit

Permalink
refs #3763 fixing unix error
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Nov 3, 2011
1 parent 7671abb commit c49fb86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -8,7 +8,7 @@
#include "MantidKernel/IValidator.h"
#include "MantidKernel/Property.h"
#include "MantidKernel/Logger.h"
#include "boost/Signal.hpp"
#include "boost/signal.hpp"
//#include <string>

namespace Mantid
Expand Down Expand Up @@ -48,6 +48,7 @@ class DLLExport ValidatorSignalChange : public IValidator< TYPE >, public boost:
/// Constructor
ValidatorSignalChange(const Property *pProp):
IValidator<TYPE>() ,
boost::signal<void (const Property *)>(),
pPropObserved(pProp)
{}

Expand Down
Expand Up @@ -21,7 +21,7 @@ void actOnPropertyChange(const Property *pProp)

};

class SignalChangeTest : public CxxTest::TestSuite
class ValidatorSignalChangeTest : public CxxTest::TestSuite
{
public:

Expand Down

0 comments on commit c49fb86

Please sign in to comment.