diff --git a/Code/Mantid/Framework/API/src/ParameterReference.cpp b/Code/Mantid/Framework/API/src/ParameterReference.cpp
index 3210879ba3b64cccb1c8c06444e645e23c68c9d4..52b64ea04ccec40917caa6b767209965dbcc2c93 100644
--- a/Code/Mantid/Framework/API/src/ParameterReference.cpp
+++ b/Code/Mantid/Framework/API/src/ParameterReference.cpp
@@ -36,7 +36,7 @@ void ParameterReference::reset(IFitFunction* fun, size_t index)
   CompositeFunction* cf = dynamic_cast<CompositeFunction*>(fun);
   while (cf)
   {
-    int iFun = cf->functionIndex(iLocal); // TODO squashing the warning breaks the code
+    int iFun = static_cast<int>(cf->functionIndex(iLocal)); // TODO squashing the warning breaks the code
     fLocal = cf->getFunction(iFun);
     iLocal = fLocal->parameterIndex(cf->parameterLocalName(iLocal));
     cf = dynamic_cast<CompositeFunction*>(fLocal);
diff --git a/Code/Mantid/Framework/Kernel/test/ConfigServiceTest.h b/Code/Mantid/Framework/Kernel/test/ConfigServiceTest.h
index 9a55572cb2e0870df1d88d68f0dbb825da326730..6842842181aadd849f654bdb6b4971dac74c3069 100644
--- a/Code/Mantid/Framework/Kernel/test/ConfigServiceTest.h
+++ b/Code/Mantid/Framework/Kernel/test/ConfigServiceTest.h
@@ -51,12 +51,12 @@ public:
 
     //checking the level - this should be set to debug in the config file
     //therefore this should only return false for debug
-    TS_ASSERT(log1.is(Logger::PRIO_DEBUG) == false); //debug
-    TS_ASSERT(log1.is(Logger::PRIO_INFORMATION)); //information
-    TS_ASSERT(log1.is(Logger::PRIO_NOTICE)); //information
-    TS_ASSERT(log1.is(Logger::PRIO_WARNING)); //warning
-    TS_ASSERT(log1.is(Logger::PRIO_ERROR)); //error
-    TS_ASSERT(log1.is(Logger::PRIO_FATAL)); //fatal
+    TS_ASSERT(log1.is(Poco::Message::PRIO_DEBUG) == false); //debug
+    TS_ASSERT(log1.is(Poco::Message::PRIO_INFORMATION)); //information
+    TS_ASSERT(log1.is(Poco::Message::PRIO_NOTICE)); //information
+    TS_ASSERT(log1.is(Poco::Message::PRIO_WARNING)); //warning
+    TS_ASSERT(log1.is(Poco::Message::PRIO_ERROR)); //error
+    TS_ASSERT(log1.is(Poco::Message::PRIO_FATAL)); //fatal
   }
 
   void testEnabled()