I get the warning while I'm editing the form in visual studio.net.
I get the warning while I'm editing the form in visual studio.net.
Is it really an error ?? You say "Warning ...."
by the warning u must not be using the form anywhere... it is just defined,,,but not used...
am i right ??
Hmm, you don't connect signals by double clicking. When you double click a child widget of a form the integration attempts to insert a slot stub with naming convention of automatic connections. Now, if there is no relevant class, or the integration is unable to detect where the form is being used, such error makes sense.
J-P Nurmi
Most likely the message appeared not only in case of double clicking. I got it when I tried to use functionality 'Connecting Signals & Slots'. It seems to me I found the reason of the mistake in my case. A namespace was used there.... in such wayI get the error when I double click on my QPushButton on the form.
Probably that's why the integration couldn't find relevant class.... I refused from using namespace and it works correctly now (at least I hope soQt Code:
namespace Space { { private: Ui::TNewDlgClass ui; ..........To copy to clipboard, switch view to plain text mode)
Bookmarks