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