* This is an overloaded member function, provided for convenience. It behaves essentially like the * above function. * * Inserts the widget \a item at position \a index, or at the bottom of the toolbox if \a index is * out of range. The new item's label is set to \a label. Returns the new item's index. */
| 75 | * out of range. The new item's label is set to \a label. Returns the new item's index. |
| 76 | */ |
| 77 | int ToolBox::insertItem(int index, QWidget* item, const QString& label) |
| 78 | { |
| 79 | return _pToolBox->insertItem(index, item, label); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Inserts the widget \a item at position \a index, or at the bottom of the toolbox if \a index is |
no outgoing calls
no test coverage detected