Browse Source

Trade: fixed wrong indentation.

pull/277/head
Vladimír Vondruš 13 years ago
parent
commit
3b14a1816e
  1. 4
      src/Trade/AbstractImporter.cpp

4
src/Trade/AbstractImporter.cpp

@ -87,8 +87,8 @@ Int AbstractImporter::defaultScene() {
Int AbstractImporter::doDefaultScene() { return -1; }
UnsignedInt AbstractImporter::sceneCount() const {
CORRADE_ASSERT(isOpened(), "Trade::AbstractImporter::sceneCount(): no file opened", 0);
return doSceneCount();
CORRADE_ASSERT(isOpened(), "Trade::AbstractImporter::sceneCount(): no file opened", 0);
return doSceneCount();
}
UnsignedInt AbstractImporter::doSceneCount() const { return 0; }

Loading…
Cancel
Save