| 274 | //----------------------------------------------------------------------------- |
| 275 | |
| 276 | void GuiTreeViewCtrl::Item::setNormalImage(S8 id) |
| 277 | { |
| 278 | if(mState.test(InspectorData)) |
| 279 | { |
| 280 | Con::errorf("Tried to set normal image %d for item %d, which is InspectorData!", id, mId); |
| 281 | return; |
| 282 | } |
| 283 | |
| 284 | mScriptInfo.mNormalImage = id; |
| 285 | } |
| 286 | |
| 287 | //----------------------------------------------------------------------------- |
| 288 |
no test coverage detected