Hello again,

Does ANYBODY know anything about layout managers??? I haven't gotten any information here and there's nothing in the documentation or Qt book (using 3.3.4).

In the docs it shows us card.cpp and card.h which is their own layout manager. I implemented it and it crashes. Great. However, it doesn't crash anywhere in visible code, but it's definitely the manager that's crashing. I don't even know if I'm calling it right because there's no mention of how to even use it.

How do I add a widget??? Widgets don't inherit qlayout and layouts don't inherit qwidget, so how is this thing supposed to work?
Qt Code:
  1. HomeLayout->addItem( (QWidget *) qLineEdit1 );
To copy to clipboard, switch view to plain text mode 
or
Qt Code:
  1. HomeLayout->addItem( (QWidgetItem *) qLineEdit1 );
To copy to clipboard, switch view to plain text mode 

Please help, as this is NOT ( )in the documentation and I don't have a clue how it's supposed to work. NOTHING Works With This!

THANKS!
Jay