From aba1ea3470f0f056fb6f2d9c02a91753c12e8286 Mon Sep 17 00:00:00 2001 From: twanvl Date: Tue, 7 Dec 2010 21:14:55 +0000 Subject: [PATCH] FunctionProfile::time -> FunctionProfile::total_time git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1542 0fc631ac-6414-0410-93d0-97cfa31319b6 --- src/cli/cli_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/cli_main.cpp b/src/cli/cli_main.cpp index e5e9ffc2..b6e95bf5 100644 --- a/src/cli/cli_main.cpp +++ b/src/cli/cli_main.cpp @@ -225,7 +225,7 @@ void CLISetInterface::handleCommand(const String& command) { cli << _("======== ======== ====== ===============================") << NORMAL << ENDL; } else { for (int i = 1 ; i < level ; ++i) cli << _(" "); - cli << String::Format(_("%8.5f %8.5f %6d %s"), item.time(), 1000 * item.avg_time(), item.calls, item.name.c_str()) << ENDL; + cli << String::Format(_("%8.5f %8.5f %6d %s"), item.total_time(), 1000 * item.avg_time(), item.calls, item.name.c_str()) << ENDL; } // show children vector children;