From 303a6893fc6805e260bea6df816ae7b8fbb65781 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Sat, 7 Feb 2015 13:23:32 +0100 Subject: [PATCH] fix the build. Signed-off-by: Kim Kulling --- code/OpenGEXImporter.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/code/OpenGEXImporter.cpp b/code/OpenGEXImporter.cpp index 7de3eaaea..673deb6f8 100644 --- a/code/OpenGEXImporter.cpp +++ b/code/OpenGEXImporter.cpp @@ -120,14 +120,9 @@ void OpenGEXImporter::SetupProperties( const Importer *pImp ) { //------------------------------------------------------------------------------------------------ void OpenGEXImporter::importMetric( Context *ctx ) { - if( NULL == ctx || NULL == ctx->getProperties() ) { + if( NULL == ctx ) { return; } - - Property *prop = ctx->getProperties(); - while( NULL != prop ) { - prop = prop->m_next; - } } //------------------------------------------------------------------------------------------------