Skip to content

Commit

Permalink
Avoid ambiguous constructor call
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent2305 committed Mar 26, 2020
1 parent 61e256d commit a3d850a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QtDcmMoveScu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ void QtDcmMoveScu::storeSCPCallback ( void *callbackData, T_DIMSE_StoreProgress
*statusDetail = NULL;
if ( ( imageDataSet != NULL ) && ( *imageDataSet != NULL ) && !self->d->bitPreserving && !self->d->ignore ) {
/* create full path name for the output file */
OFFilename dcmFileName(nullptr, OFTrue);
OFFilename dcmFileName;
OFFilename dcmOutputDirectory(self->d->outputDirectory, OFTrue);
OFFilename dcmImageFile(self->d->imageFile, OFTrue);
OFStandard::combineDirAndFilename (dcmFileName, dcmOutputDirectory, dcmImageFile, OFTrue /* allowEmptyDirName */ );
Expand Down

0 comments on commit a3d850a

Please sign in to comment.