Skip to content

Commit 045bdd7

Browse files
committed
Added newline at end of CTestConfig.cmake. Changed NULLs to "" to make gcc 4.x happy on the Mac.
1 parent f4eeecb commit 045bdd7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CTestConfig.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set(CTEST_NIGHTLY_START_TIME "23:00:00 EDT")
44
set(CTEST_DROP_METHOD "http")
55
set(CTEST_DROP_SITE "my.cdash.org")
66
set(CTEST_DROP_LOCATION "/submit.php?project=CTK")
7-
set(CTEST_DROP_SITE_CDASH TRUE)
7+
set(CTEST_DROP_SITE_CDASH TRUE)

Libs/DICOM/Core/ctkDICOMIndexer.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ void ctkDICOMIndexer::addDirectory(QSqlDatabase database, const QString& directo
9292

9393
OFList<OFString> originalDcmtkFileNames;
9494
OFList<OFString> dcmtkFileNames;
95-
OFStandard::searchDirectoryRecursively(src_directory.c_str(), originalDcmtkFileNames, NULL, NULL);
95+
std::cerr << "Source Directory: " << src_directory << std::endl;
96+
OFStandard::searchDirectoryRecursively( src_directory.c_str(), originalDcmtkFileNames, "", "");
9697

9798
// hack to reverse list of filenames (not neccessary when image loading works correctly)
9899
for ( OFListIterator(OFString) iter = originalDcmtkFileNames.begin(); iter != originalDcmtkFileNames.end(); ++iter )

0 commit comments

Comments
 (0)