| 55 | } |
| 56 | |
| 57 | void ofApp::onAddNewItemButtonClick(ofxDatGuiButtonEvent e) |
| 58 | { |
| 59 | view->add("item " + ofToString(view->getNumItems() + 1)); |
| 60 | addItem->setLabel("click to add item - " + ofToString(view->getNumItems()) + " items"); |
| 61 | } |
| 62 | |
| 63 | void ofApp::onClearAllButtonClick(ofxDatGuiButtonEvent e) |
| 64 | { |
nothing calls this directly
no test coverage detected