Hallo Everybody,

i have a simple dialog-widget made in Designer. QDialog inherits QWidget, right?

Qt Code:
  1. class inputdialog : public QDialog
  2. {
  3.  
  4. public: ...the constructor
  5.  
  6. private:
  7.  
  8. UI:inputdialog *ui;
  9. ...
To copy to clipboard, switch view to plain text mode 

Normally I take the rough road and code them on my own, but I gave it a try. Now I have a menubutton wich looks like "?", which certainly means "help" or "about".
When I press this button the widget seems to fall in an undefined state. The mousecursor shows the "forbidden" sign an then it turns into a "beam". After some seconds it returns to normal. Therefore I would not just ignore it.

Question: How do I access this thing? Fill it with actions, switch it off, ..whatever. I didn't find an entry in the prefs of my widget in the designer. Nor I'm very familiar with this product.

Any help as always highly appreciated.

regards, Lars