| 334 | //----------------------------------------------------------------------------- |
| 335 | |
| 336 | S8 GuiTreeViewCtrl::Item::getNormalImage() const |
| 337 | { |
| 338 | if(mState.test(InspectorData)) |
| 339 | { |
| 340 | Con::errorf("Tried to get the normal image for item %d, which is InspectorData!", mId); |
| 341 | return 0; // fail safe for width determinations |
| 342 | } |
| 343 | |
| 344 | return mScriptInfo.mNormalImage; |
| 345 | } |
| 346 | |
| 347 | //----------------------------------------------------------------------------- |
| 348 |
no test coverage detected