Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 498 → Rev 499

/trunk/telegraphics_common/tt/dbg_win.c
22,7 → 22,7
 
void dbg(TCHAR *s){
#ifdef DEBUG
MessageBox(NULL,s,TEXT("plugin debug"),0); // TODO (Not so important): TRANSLATE
MessageBox(NULL,s,TEXT("plugin debug"),0);
#else
UNREFERENCED_PARAMETER(s);
#endif
/trunk/telegraphics_common/tt/ui_compat_win.c
86,7 → 86,7
 
return true;
}else
dbg((TCHAR*)TEXT("CreateDIBSection FAILED")); // TODO (Not so important): TRANSLATE
dbg((TCHAR*)TEXT("CreateDIBSection FAILED"));
}
return false;
}
/trunk/ui_build.c
242,14 → 242,6
gdata->parm.iProtected = ISDLGBUTTONCHECKED(dp,PROTECTITEM); // == 1 means protected
gdata->obfusc = (Boolean)ISDLGBUTTONCHECKED(dp,PROTECTITEM);
 
// TODO: Unicode!
//xstrcpy(fname, gdata->parm.szTitle);
/*
for (i = 0; i < (int)strlen(gdata->parm.szTitle); i++) {
fname[i] = gdata->parm.szTitle[i];
fname[i + 1] = 0;
}
*/
GetDlgItemText(dp, TITLEITEM, fname, MAXFIELD);
 
{