From 2e78c0292f3b20c42ccf406f802e23fd333c4a7a Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 8 Oct 2007 08:05:40 +0000 Subject: [PATCH] Patch level :4.0 792 Files correlati : Ricompilazione Demo : [ ] Commento :altre correzioni legate alla nuova Type in campo.ini git-svn-id: svn://10.65.10.50/trunk@15684 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- ba/bainstlib.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ba/bainstlib.cpp b/ba/bainstlib.cpp index aa3052592..bb2c72c0d 100755 --- a/ba/bainstlib.cpp +++ b/ba/bainstlib.cpp @@ -382,12 +382,12 @@ bool TInstallmodule_app::create() else _m = NULL; - TConfig praw(CONFIG_INSTALL, "Main"); - const int type = praw.get_int("Type"); + TConfig campo_ini(CONFIG_INSTALL, "Main"); + const int type = campo_ini.get_int("Type"); if (type == 1 || type == 2) _test_database = true; else - _test_database = prawin.get_bool("TestDatabase"); + _test_database = campo_ini.get_bool("TestDatabase"); return TSkeleton_application::create(); }