From 3b14a1816e71874af95d48db253460f7f0ac56f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 11 Aug 2013 19:12:20 +0200 Subject: [PATCH] Trade: fixed wrong indentation. --- src/Trade/AbstractImporter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Trade/AbstractImporter.cpp b/src/Trade/AbstractImporter.cpp index f6c53eb4a..e5e2eca1a 100644 --- a/src/Trade/AbstractImporter.cpp +++ b/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; }