diff --git a/src/delegateconfigwrapper.h b/src/delegateconfigwrapper.h index aab8a5561..5419c8f9a 100644 --- a/src/delegateconfigwrapper.h +++ b/src/delegateconfigwrapper.h @@ -52,7 +52,8 @@ public: setMinimumSize( sizeHint() ); setMaximumSize( sizeHint() ); // to remove the resize grip on osx this is the only way - connect( conf, SIGNAL( sizeHintChanged() ), this, SLOT( updateSizeHint() ) ); + if( conf->metaObject()->indexOfSignal( "sizeHintChanged()" ) > -1 ) + connect( conf, SIGNAL( sizeHintChanged() ), this, SLOT( updateSizeHint() ) ); #else m_widget->setVisible( true ); #endif