Re: [Interest] how to debug a Qt Designer plugin

2014-12-11 Thread Graham Labdon
-project.org Subject: Re: [Interest] how to debug a Qt Designer plugin Hi Graham, It could be several things: - the plugin has been compiled with debug - it must be release build. - supporting DLLs are not available in your path. - the code in the plugin is relying on initialisation that only occurs

Re: [Interest] how to debug a Qt Designer plugin

2014-12-11 Thread Alejandro Exojo
El Wednesday 10 December 2014, Graham Labdon escribió: > Hi > I have developed some designer plugins that are working nicely. > Now I have created another but cannot get it to work. > Within designer I see the following when I do Help->about Plugins - > > Failed Plugins > > C:\Qt\Qt5.3.0\5.3\m

Re: [Interest] how to debug a Qt Designer plugin

2014-12-10 Thread Tony Rietwyk
Hi Graham, It could be several things: - the plugin has been compiled with debug - it must be release build. - supporting DLLs are not available in your path. - the code in the plugin is relying on initialisation that only occurs in your main exe. Because of the first point, you c