Patch level : 10.0

Files correlati     : ba0
Ricompilazione Demo : [ ]
Commento            :
Aggiunta gestione sotto/processi


git-svn-id: svn://10.65.10.50/trunk@16084 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2008-02-01 16:39:41 +00:00
parent 5dd564822e
commit ab7990b69e
3 changed files with 9 additions and 1 deletions

View File

@ -270,7 +270,8 @@ long TMenu_tree::find_node(const TString& id)
TMenu_tree::TMenu_tree(TMenu& menu)
: _menu(&menu), _curr_id(128, '/')
{
_root_id = _menu->current().name();
// _root_id = _menu->current().name();
_root_id = "MENU_000"; // Triste necessita' per sicurezza
goto_root();
}

View File

@ -16,6 +16,7 @@ protected:
public:
TCampo_window(int x, int y, int dx, int dy,
WINDOW parent, TWindowed_field* owner);
~TCampo_window();
};
void TCampo_window::update()
@ -57,6 +58,11 @@ TCampo_window::TCampo_window(int x, int y, int dx, int dy,
set_scroll_max(0, 0); // Get rid of that useless scrollbars
}
TCampo_window::~TCampo_window()
{
xvt_sys_close_children(win());
}
///////////////////////////////////////////////////////////
// TCampo_field
///////////////////////////////////////////////////////////

View File

@ -2,6 +2,7 @@
#include <config.h>
#include <prefix.h>
#include <tree.h>
#include <treectrl.h>
#include <urldefid.h>
#include "ba2201.h"