Skip to content
Snippets Groups Projects
Commit 41a7950b authored by Victor Poughon's avatar Victor Poughon
Browse files

REFAC: refactor SetupForFilenameDrop

parent 7cf869c9
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ protected:
*/
double Value(BandNameType band, const itk::VariableLengthVector<TInput>& input) const
{
assert(m_RequiredBands[band] && "Retrieving value for a band that is not in the required bands list");
assert(m_RequiredBands[static_cast<size_t>(band)] && "Retrieving value for a band that is not in the required bands list");
return static_cast<double>(input[UncheckedBandIndex(band) - 1]);
}
......
......@@ -90,7 +90,7 @@ namespace Wrapper
*/
template< typename W >
void
SetupForFilenameDrop( W* widget, const char* text =NULL );
SetupForFilenameDrop( W* widget );
/**
*/
......@@ -376,7 +376,7 @@ FileSelectionInitializer
{
assert( widget!=NULL );
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
}
/*****************************************************************************/
......@@ -387,7 +387,7 @@ InputImageInitializer
{
assert( widget!=NULL );
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
}
/*****************************************************************************/
......@@ -409,7 +409,7 @@ InputFilenameInitializer
{
assert( widget!=NULL );
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
}
/*****************************************************************************/
......@@ -431,7 +431,7 @@ InputVectorDataInitializer
{
assert( widget!=NULL );
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
}
/*****************************************************************************/
......@@ -453,7 +453,7 @@ InputProcessXMLInitializer
{
assert( widget!=NULL );
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
}
/*****************************************************************************/
......@@ -494,7 +494,7 @@ OutputImageInitializer
if( m_Prefix.isEmpty() )
{
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
assert( qApp!=NULL );
assert( !qApp->arguments().empty() );
......@@ -518,7 +518,7 @@ OutputVectorDataInitializer
{
assert( widget!=NULL );
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
assert( qApp!=NULL );
assert( !qApp->arguments().empty() );
......@@ -534,7 +534,7 @@ OutputFilenameInitializer
{
assert( widget!=NULL );
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
assert( qApp!=NULL );
assert( !qApp->arguments().empty() );
......@@ -550,7 +550,7 @@ OutputProcessXMLInitializer
{
assert( widget!=NULL );
SetupForFilenameDrop( widget, "You can drop filename here." );
SetupForFilenameDrop( widget );
assert( qApp!=NULL );
assert( !qApp->arguments().empty() );
......@@ -592,7 +592,7 @@ ParameterListInitializer
/*****************************************************************************/
template< typename W >
void
SetupForFilenameDrop( W* widget, const char* text )
SetupForFilenameDrop( W* widget )
{
assert( widget!=NULL );
......@@ -602,15 +602,12 @@ SetupForFilenameDrop( W* widget, const char* text )
// Setup widget.
bool signalsBlocked = lineEdit->blockSignals( true );
{
if( text!=NULL )
{
lineEdit->setPlaceholderText(
QCoreApplication::translate(
"mvd::Wrapper::QtWidgetView",
text
"You can drop a file here"
)
);
}
// lineEdit->setReadOnly( true );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment