Patch level :2.2 186
Files correlati : Ricompilazione Demo : [ ] Commento :correzioni pro compilazione nuova 2.2 git-svn-id: svn://10.65.10.50/trunk@13388 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
b2d5265927
commit
8a5cbd8965
@ -2691,7 +2691,7 @@ void TEditMask_window::handler(WINDOW win, EVENT *ep)
|
||||
bool intool;
|
||||
const PNT pnt=logic(p, intool);
|
||||
s.format(FR("Coordinate:%3d,%3d"), pnt.h , pnt.v);
|
||||
xvt_statbar_set(s);
|
||||
xvtil_statbar_set(s);
|
||||
if(win)
|
||||
selected_crt(win,ep);
|
||||
}
|
||||
@ -2701,7 +2701,7 @@ void TEditMask_window::handler(WINDOW win, EVENT *ep)
|
||||
TString16 p;
|
||||
o_key(e_char_to_key(ep));
|
||||
p.format(FR("Pag.%d"),_page);
|
||||
xvt_statbar_set(p);
|
||||
xvtil_statbar_set(p);
|
||||
set_caption(_name.row(_page));
|
||||
}
|
||||
break;
|
||||
|
@ -112,7 +112,7 @@ bool TAnaprint_app::preprocess_page(int file, int counter)
|
||||
if (_pr_type == elenco || _pr_type == rubriche)
|
||||
{
|
||||
_surname_name = current_cursor()->curr(LF_ANAG).get("RAGSOC");
|
||||
_surname_name.strip_d_spaces();
|
||||
_surname_name.strip_double_spaces();
|
||||
}
|
||||
|
||||
if (_pr_type == rubriche)
|
||||
|
@ -493,14 +493,14 @@ void TAnaprint_app::set_scheda_ditta()
|
||||
ana.put("CODANAGR",codice);
|
||||
if (ana.read() == NOERR)
|
||||
firmat = ana.get("RAGSOC");
|
||||
firmat.strip_d_spaces();
|
||||
firmat.strip_double_spaces();
|
||||
set_row(10, FR("Firmatario@20g@s @30g%s"),FLD(LF_NDITTE,"FIRMAT"),(const char *)firmat);
|
||||
codice = current_cursor()->curr(LF_NDITTE).get_long("RAPPR");
|
||||
ana.put("TIPOA", "F");
|
||||
ana.put("CODANAGR",codice);
|
||||
if (ana.read() == NOERR)
|
||||
rappr = ana.get("RAGSOC");
|
||||
rappr.strip_d_spaces();
|
||||
rappr.strip_double_spaces();
|
||||
set_row(11, FR("Rappresentante@20g@s @30g%s"),FLD(LF_NDITTE,"RAPPR"),(const char *)rappr);
|
||||
|
||||
set_row(12, FR("Altri dati@20gRiferimento @u@s@r @54gTel. @u@4S@r/@u@S@r"),
|
||||
|
@ -498,7 +498,7 @@ void TMailer_mask::test_delete()
|
||||
{
|
||||
TWait_cursor hourglass;
|
||||
|
||||
xvt_statbar_set("Eliminazione messaggi POP3...");
|
||||
xvtil_statbar_set("Eliminazione messaggi POP3...");
|
||||
do_events();
|
||||
|
||||
TSheet_field& sf = sfield(F_MESSAGES);
|
||||
@ -533,12 +533,12 @@ void TMailer_mask::test_delete()
|
||||
|
||||
if (mapidel.items() > 0)
|
||||
{
|
||||
xvt_statbar_set("Eliminazione messaggi MAPI...");
|
||||
xvtil_statbar_set("Eliminazione messaggi MAPI...");
|
||||
do_events();
|
||||
mapidel.remove();
|
||||
}
|
||||
|
||||
xvt_statbar_set("Pronto");
|
||||
xvtil_statbar_set("Pronto");
|
||||
do_events();
|
||||
}
|
||||
|
||||
@ -596,12 +596,12 @@ int TMailer_mask::fill_messages()
|
||||
|
||||
if (get_bool(F_MAPI))
|
||||
{
|
||||
xvt_statbar_set("Ricezione messaggi MAPI...");
|
||||
xvtil_statbar_set("Ricezione messaggi MAPI...");
|
||||
do_events();
|
||||
totmapi = _box.get();
|
||||
}
|
||||
|
||||
xvt_statbar_set("Ricezione messaggi POP3...");
|
||||
xvtil_statbar_set("Ricezione messaggi POP3...");
|
||||
do_events();
|
||||
mailbox.logon(server, user, password);
|
||||
mailbox.get(_box);
|
||||
@ -643,7 +643,7 @@ int TMailer_mask::fill_messages()
|
||||
}
|
||||
sf.force_update();
|
||||
|
||||
xvt_statbar_set("Pronto");
|
||||
xvtil_statbar_set("Pronto");
|
||||
|
||||
return sf.items();
|
||||
}
|
||||
|
@ -277,9 +277,9 @@ bool TForm_editor::menu(MENU_TAG tag)
|
||||
TString status;
|
||||
status << TR("Profilo: ") << _form->name();
|
||||
status << TR(" codice: ") << _form->code();
|
||||
xvt_statbar_set(status);
|
||||
xvtil_statbar_set(status);
|
||||
edit(sec, pt);
|
||||
xvt_statbar_set(" ");
|
||||
xvtil_statbar_set(" ");
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -78,7 +78,9 @@ void TPerformance_profiler::show() const
|
||||
TPerformance_profiler::~TPerformance_profiler()
|
||||
{
|
||||
show();
|
||||
#ifdef DBG
|
||||
_depth--;
|
||||
#endif
|
||||
}
|
||||
|
||||
// @doc EXTERNAL
|
||||
|
Loading…
x
Reference in New Issue
Block a user